Blame view

node_modules/clean-css/lib/utils/clone-array.js 241 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
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;