Merge branch 'soon' into absolute-paths

This commit is contained in:
ansuz 2022-10-12 10:55:43 +05:30
commit 2e4655e29c

View file

@ -36,6 +36,7 @@
};
Util.clone = function (o) {
if (o === undefined || o === null) { return o; }
return JSON.parse(JSON.stringify(o));
};