/home/techb158/balavpn.abdallabala.com/node_modules/which-collection
NameSizeModeActions
.github/-0777rm
test/-0777rm
.eslintrc430666editdlrm
.nycrc2160666editdlrm
CHANGELOG.md69660666editdlrm
index.d.ts6700666editdlrm
index.js5090666editdlrm
LICENSE10670666editdlrm
package.json23180666editdlrm
README.md29030666editdlrm
tsconfig.json36110666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/which-collection/index.d.ts (670B)
/** * Determines the type of the given collection, or returns false. * * @param {unknown} value The potential collection * @returns {'Map' | 'Set' | 'WeakMap' | 'WeakSet' | false} 'Map' | 'Set' | 'WeakMap' | 'WeakSet' | false */ declare function whichCollection(value: Map): 'Map'; declare function whichCollection(value: Set): 'Set'; declare function whichCollection(value: WeakMap): 'WeakMap'; declare function whichCollection(value: WeakSet): 'WeakSet'; declare function whichCollection(value: null | undefined | boolean | number | bigint | symbol | unknown): false; export = whichCollection;