create project
This commit is contained in:
14
kitabcitab/node_modules/next/dist/lib/pick.js
generated
vendored
Normal file
14
kitabcitab/node_modules/next/dist/lib/pick.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.pick = pick;
|
||||
function pick(obj, keys) {
|
||||
const newObj = {};
|
||||
for (const key of keys){
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=pick.js.map
|
||||
Reference in New Issue
Block a user