1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 11:43:16 +00:00

Remove unused deepCopy() function

This commit is contained in:
Jeremy Ruston 2012-02-19 20:12:25 +00:00
parent e4dd63d089
commit 93de843016

View File

@ -13,26 +13,6 @@ This file is a bit of a dumping ground; the expectation is that most of these fu
var utils = exports;
utils.deepCopy = function(v) {
var r,t;
if(v instanceof Array) {
r = [];
for(t=0; t<v.length; t++) {
r.push(utils.deepCopy(v[t]));
}
} else if (typeof v === "object" && v) {
r = {};
for(t in v) {
if(v.hasOwnPropery(t)) {
r[t] = utils.deepCopy(v[t]);
}
}
} else {
r = v;
}
return r;
};
// Pad a string to a certain length with zeros
utils.zeroPad = function(n,d)
{