eslint-module-utils
Advanced tools
Comparing version 2.11.1 to 2.12.0
@@ -8,2 +8,7 @@ # Change Log | ||
## v2.12.0 - 2024-09-26 | ||
### Added | ||
- `hash`: add support for hashing functions ([#3072], thanks [@michaelfaith]) | ||
## v2.11.1 - 2024-09-23 | ||
@@ -176,2 +181,3 @@ | ||
[#3072]: https://github.com/import-js/eslint-plugin-import/pull/3072 | ||
[#3061]: https://github.com/import-js/eslint-plugin-import/pull/3061 | ||
@@ -178,0 +184,0 @@ [#3057]: https://github.com/import-js/eslint-plugin-import/pull/3057 |
@@ -20,2 +20,4 @@ /** | ||
hashArray(value, hash); | ||
} else if (typeof value === 'function') { | ||
hash.update(String(value)); | ||
} else if (value instanceof Object) { | ||
@@ -22,0 +24,0 @@ hashObject(value, hash); |
{ | ||
"name": "eslint-module-utils", | ||
"version": "2.11.1", | ||
"version": "2.12.0", | ||
"description": "Core utilities to support eslint-plugin-import and other module-related plugins.", | ||
@@ -5,0 +5,0 @@ "engines": { |
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
54642
1084
2