9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
import build_debug from 'debug';
|
||
|
|
||
|
function debug (scope: string): build_debug.Debugger {
|
||
|
const namespace = `sapphirecode:auth-server-helper:${scope}`;
|
||
|
return build_debug (namespace);
|
||
|
}
|
||
|
|
||
|
export { debug };
|