11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import debugModule from 'debug';
|
|
export const debug = (prefix) => {
|
|
const log = debugModule(prefix);
|
|
return log.enabled ? log : undefined;
|
|
};
|
|
//# sourceMappingURL=debug.js.map
|