Files
memecoin-botV2/.pnpm-store/v10/files/1c/3e584b5b11575cac55532033b24ce7ff0b802d8a78240a6581f925cef8870a791d0baa69ad6c73524720d109bf432b486bef65622852b26b924c8027d77bdf

17 lines
505 B
Plaintext

"use strict";
function _object_without_properties_loose(source, excluded) {
if (source == null) return {};
var target = {}, sourceKeys = Object.getOwnPropertyNames(source), key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];
if (excluded.indexOf(key) >= 0) continue;
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
target[key] = source[key];
}
return target;
}
exports._ = _object_without_properties_loose;