/opt/canhelp/node_modules/ioredis/built/utils
NameSizeModeActions
applyMixin.d.ts1830644editdlrm
applyMixin.js3900644editdlrm
argumentParsers.d.ts8100644editdlrm
argumentParsers.js24670644editdlrm
Commander.d.ts12520644editdlrm
Commander.js44260644editdlrm
debug.d.ts6140644editdlrm
debug.js26360644editdlrm
index.d.ts33030644editdlrm
index.js93290644editdlrm
lodash.d.ts1700644editdlrm
lodash.js3420644editdlrm
RedisCommander.d.ts4183400644editdlrm
RedisCommander.js2270644editdlrm
Edit: /opt/canhelp/node_modules/ioredis/built/utils/debug.d.ts (614B)
declare const MAX_ARGUMENT_LENGTH = 200; /** * helper function that tried to get a string value for * arbitrary "debug" arg */ declare function getStringValue(v: any): string | void; /** * helper function that redacts a string representation of a "debug" arg */ declare function genRedactedString(str: string, maxLen: number): string; /** * a wrapper for the `debug` module, used to generate * "debug functions" that trim the values in their output */ export default function genDebugFunction(namespace: string): (...args: any[]) => void; export { MAX_ARGUMENT_LENGTH, getStringValue, genRedactedString };