From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/clean-css/lib/utils/clone-array.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 node_modules/clean-css/lib/utils/clone-array.js (limited to 'node_modules/clean-css/lib/utils/clone-array.js') 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; -- cgit v1.2.3