NeahFront7/node_modules/openid-client/lib/helpers/pick.js
2025-04-10 18:14:28 +02:00

10 lines
196 B
JavaScript

module.exports = function pick(object, ...paths) {
const obj = {};
for (const path of paths) {
if (object[path] !== undefined) {
obj[path] = object[path];
}
}
return obj;
};