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:
6
install/config-ui/node_modules/es-to-primitive/helpers/isPrimitive.js
generated
vendored
Normal file
6
install/config-ui/node_modules/es-to-primitive/helpers/isPrimitive.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
/** @type {(value: unknown) => value is null | undefined | string | symbol | number | boolean | bigint} */
|
||||
module.exports = function isPrimitive(value) {
|
||||
return value === null || (typeof value !== 'function' && typeof value !== 'object');
|
||||
};
|
||||
Reference in New Issue
Block a user