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, 0 insertions, 12 deletions
diff --git a/node_modules/clean-css/lib/utils/clone-array.js b/node_modules/clean-css/lib/utils/clone-array.js
deleted file mode 100644
index b95ee6843..000000000
--- a/node_modules/clean-css/lib/utils/clone-array.js
+++ /dev/null
@@ -1,12 +0,0 @@
-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;