@alextheman/utility 3.5.3 → 3.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -388,7 +388,7 @@ var normalizeImportPath_default = normalizeImportPath;
388
388
  //#endregion
389
389
  //#region src/functions/omitProperties.ts
390
390
  function omitProperties(object, keysToOmit) {
391
- const outputObject = deepCopy_default(object);
391
+ const outputObject = { ...object };
392
392
  (Array.isArray(keysToOmit) ? keysToOmit : [keysToOmit]).forEach((key) => {
393
393
  delete outputObject[key];
394
394
  });
package/dist/index.js CHANGED
@@ -359,7 +359,7 @@ var normalizeImportPath_default = normalizeImportPath;
359
359
  //#endregion
360
360
  //#region src/functions/omitProperties.ts
361
361
  function omitProperties(object, keysToOmit) {
362
- const outputObject = deepCopy_default(object);
362
+ const outputObject = { ...object };
363
363
  (Array.isArray(keysToOmit) ? keysToOmit : [keysToOmit]).forEach((key) => {
364
364
  delete outputObject[key];
365
365
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alextheman/utility",
3
- "version": "3.5.3",
3
+ "version": "3.5.4",
4
4
  "description": "Helpful utility functions",
5
5
  "repository": {
6
6
  "type": "git",