mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
update packages to latest version
This commit is contained in:
3
node_modules/clean-css/lib/utils/clone-array.js
generated
vendored
3
node_modules/clean-css/lib/utils/clone-array.js
generated
vendored
@@ -2,8 +2,7 @@ function cloneArray(array) {
|
||||
var cloned = array.slice(0);
|
||||
|
||||
for (var i = 0, l = cloned.length; i < l; i++) {
|
||||
if (Array.isArray(cloned[i]))
|
||||
cloned[i] = cloneArray(cloned[i]);
|
||||
if (Array.isArray(cloned[i])) { cloned[i] = cloneArray(cloned[i]); }
|
||||
}
|
||||
|
||||
return cloned;
|
||||
|
Reference in New Issue
Block a user