array-union
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -1,3 +0,3 @@ | ||
const arrayUnion = (...arguments_) => [...new Set([...arguments_.flat()])]; | ||
const arrayUnion = (...arguments_) => [...new Set(arguments_.flat())]; | ||
export default arrayUnion; |
{ | ||
"name": "array-union", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Create an array of unique values, in order, from the input arrays", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
3590