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/amd/invert.js
generated
vendored
Normal file
15
node_modules/underscore/amd/invert.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
define(['./keys'], function (keys) {
|
||||
|
||||
// Invert the keys and values of an object. The values must be serializable.
|
||||
function invert(obj) {
|
||||
var result = {};
|
||||
var _keys = keys(obj);
|
||||
for (var i = 0, length = _keys.length; i < length; i++) {
|
||||
result[obj[_keys[i]]] = _keys[i];
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
return invert;
|
||||
|
||||
});
|
Reference in New Issue
Block a user