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:
17
install/config-ui/node_modules/object.values/implementation.js
generated
vendored
Normal file
17
install/config-ui/node_modules/object.values/implementation.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
'use strict';
|
||||
|
||||
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
|
||||
var callBound = require('call-bound');
|
||||
|
||||
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable');
|
||||
|
||||
module.exports = function values(O) {
|
||||
var obj = RequireObjectCoercible(O);
|
||||
var vals = [];
|
||||
for (var key in obj) {
|
||||
if ($isEnumerable(obj, key)) { // checks own-ness as well
|
||||
vals[vals.length] = obj[key];
|
||||
}
|
||||
}
|
||||
return vals;
|
||||
};
|
||||
Reference in New Issue
Block a user