Initial boiler plate project
This commit is contained in:
9
node_modules/next/dist/esm/lib/pick.js
generated
vendored
Normal file
9
node_modules/next/dist/esm/lib/pick.js
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
export 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