1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/babel-runtime/helpers/objectWithoutProperties.js

15 lines
280 B
JavaScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
"use strict";
exports.__esModule = true;
exports.default = function (obj, keys) {
var target = {};
for (var i in obj) {
if (keys.indexOf(i) >= 0) continue;
if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;
target[i] = obj[i];
}
return target;
};