source: frontend/node_modules/clean-css/lib/utils/clone-array.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 239 bytes
Line 
1function cloneArray(array) {
2 var cloned = array.slice(0);
3
4 for (var i = 0, l = cloned.length; i < l; i++) {
5 if (Array.isArray(cloned[i])) { cloned[i] = cloneArray(cloned[i]); }
6 }
7
8 return cloned;
9}
10
11module.exports = cloneArray;
Note: See TracBrowser for help on using the repository browser.