corifeus-utils
Advanced tools
Comparing version 2021.10.105 to 2021.10.107
{ | ||
"name": "corifeus-utils", | ||
"version": "2021.10.105", | ||
"version": "2021.10.107", | ||
"corifeus": { | ||
@@ -39,3 +39,3 @@ "icon": "far fa-lightbulb", | ||
"devDependencies": { | ||
"corifeus-builder": "^2021.10.101" | ||
"corifeus-builder": "^2021.10.105" | ||
}, | ||
@@ -42,0 +42,0 @@ "peerDependencies": { |
@@ -13,3 +13,3 @@ [//]: #@corifeus-header | ||
--- | ||
# ❤️ Corifeus Utils v2021.10.105 | ||
# ❤️ Corifeus Utils v2021.10.107 | ||
@@ -51,2 +51,3 @@ | ||
* Lodash Pascal | ||
* Lodash patch to work `_.isEmpty` with `Symbols` | ||
* Remove silent process ```unhandledRejection``` end ```process.exit()```, adds timestamp | ||
@@ -115,3 +116,3 @@ * Process ```uncaughtException``` that shows timestamp. | ||
[**CORIFEUS-UTILS**](https://corifeus.com/corifeus-utils) Build v2021.10.105 | ||
[**CORIFEUS-UTILS**](https://corifeus.com/corifeus-utils) Build v2021.10.107 | ||
@@ -118,0 +119,0 @@ [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) |
@@ -10,2 +10,12 @@ try { | ||
const originalIsEmpty = _.isEmpty | ||
_.isEmpty = (value) => { | ||
const originalResult = originalIsEmpty(value) | ||
if (originalResult && value) { | ||
const objectSymbols = Object.getOwnPropertySymbols(value); | ||
return objectSymbols.length === 0 | ||
} | ||
return originalResult | ||
} | ||
module.exports = _; | ||
@@ -12,0 +22,0 @@ } catch (e) { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39880
983
129