You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
275 B

4 months ago
export function omit(obj, keys) {
var res = {};
var innerKeys = Array.isArray(keys) ? keys : [keys];
for (var key in obj) {
if (!innerKeys.includes(key)) {
res[key] = obj[key];
}
}
return res;
}
//# sourceMappingURL=omit.js.map