diff options
Diffstat (limited to 'school/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js')
-rw-r--r-- | school/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/school/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js b/school/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js deleted file mode 100644 index 36804a3..0000000 --- a/school/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +++ /dev/null @@ -1,16 +0,0 @@ -import objectWithoutPropertiesLoose from "./objectWithoutPropertiesLoose.js"; -export default function _objectWithoutProperties(source, excluded) { - if (source == null) return {}; - var target = objectWithoutPropertiesLoose(source, excluded); - var key, i; - if (Object.getOwnPropertySymbols) { - var sourceSymbolKeys = Object.getOwnPropertySymbols(source); - for (i = 0; i < sourceSymbolKeys.length; i++) { - key = sourceSymbolKeys[i]; - if (excluded.indexOf(key) >= 0) continue; - if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; - target[key] = source[key]; - } - } - return target; -}
\ No newline at end of file |