dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
车牌
aijinhui
2023-12-29
bc2d4d4f3ceee6e51b15723c5e3f2c981bd72ba0
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
clean-css
/
lib
/
utils
/
clone-array.js
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;