@kizmann/pico-js 0.4.12 → 0.4.13
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/pico-js.js +1 -1
- package/dist/pico-js.js.map +1 -1
- package/package.json +1 -1
- package/src/utility/array.js +1 -1
package/package.json
CHANGED
package/src/utility/array.js
CHANGED
@@ -229,7 +229,7 @@ export class Arr
|
|
229
229
|
|
230
230
|
static equal(arr1, arr2)
|
231
231
|
{
|
232
|
-
let complete = this.merge(arr1, arr2);
|
232
|
+
let complete = this.merge([], arr1, arr2);
|
233
233
|
|
234
234
|
let rainbow = this.each(complete, (value) => {
|
235
235
|
return this.has(arr1, value) && this.has(arr2, value);
|