feat: init
This commit is contained in:
10
node_modules/only/index.js
generated
vendored
Normal file
10
node_modules/only/index.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
module.exports = function(obj, keys){
|
||||
obj = obj || {};
|
||||
if ('string' == typeof keys) keys = keys.split(/ +/);
|
||||
return keys.reduce(function(ret, key){
|
||||
if (null == obj[key]) return ret;
|
||||
ret[key] = obj[key];
|
||||
return ret;
|
||||
}, {});
|
||||
};
|
||||
Reference in New Issue
Block a user