Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
25
install/config-ui/node_modules/which-collection/index.js
generated
vendored
Normal file
25
install/config-ui/node_modules/which-collection/index.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
'use strict';
|
||||
|
||||
var isMap = require('is-map');
|
||||
var isSet = require('is-set');
|
||||
var isWeakMap = require('is-weakmap');
|
||||
var isWeakSet = require('is-weakset');
|
||||
|
||||
/** @type {import('.')} */
|
||||
module.exports = function whichCollection(/** @type {unknown} */ value) {
|
||||
if (value && typeof value === 'object') {
|
||||
if (isMap(value)) {
|
||||
return 'Map';
|
||||
}
|
||||
if (isSet(value)) {
|
||||
return 'Set';
|
||||
}
|
||||
if (isWeakMap(value)) {
|
||||
return 'WeakMap';
|
||||
}
|
||||
if (isWeakSet(value)) {
|
||||
return 'WeakSet';
|
||||
}
|
||||
}
|
||||
return false;
|
||||
};
|
||||
Reference in New Issue
Block a user