aboutsummaryrefslogtreecommitdiff
path: root/node_modules/clean-css/lib/utils/clone-array.js
blob: b95ee6843b8248c9b2a5029a7fd607fb4280e1c9 (plain)
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;