aboutsummaryrefslogtreecommitdiff
path: root/node_modules/clean-css/lib/utils/clone-array.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/clean-css/lib/utils/clone-array.js')
-rw-r--r--node_modules/clean-css/lib/utils/clone-array.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/clean-css/lib/utils/clone-array.js b/node_modules/clean-css/lib/utils/clone-array.js
new file mode 100644
index 000000000..b95ee6843
--- /dev/null
+++ b/node_modules/clean-css/lib/utils/clone-array.js
@@ -0,0 +1,12 @@
+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]);
+ }
+
+ return cloned;
+}
+
+module.exports = cloneArray;