Added the underscore node_module.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
This commit is contained in:
15
node_modules/underscore/cjs/allKeys.js
generated
vendored
Normal file
15
node_modules/underscore/cjs/allKeys.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
var isObject = require('./isObject.js');
|
||||
var _setup = require('./_setup.js');
|
||||
var _collectNonEnumProps = require('./_collectNonEnumProps.js');
|
||||
|
||||
// Retrieve all the enumerable property names of an object.
|
||||
function allKeys(obj) {
|
||||
if (!isObject(obj)) return [];
|
||||
var keys = [];
|
||||
for (var key in obj) keys.push(key);
|
||||
// Ahem, IE < 9.
|
||||
if (_setup.hasEnumBug) _collectNonEnumProps(obj, keys);
|
||||
return keys;
|
||||
}
|
||||
|
||||
module.exports = allKeys;
|
Reference in New Issue
Block a user