This commit is contained in:
Marco Castelluccio 2014-09-30 19:25:25 -07:00
Родитель 085896ec5d
Коммит aa435f1d08
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -13,13 +13,6 @@ Array.prototype.pop2 = function() {
return this.pop();
}
Array.prototype.dup = function() {
var v = this.pop();
this.push(v);
this.push(v);
return v;
}
Array.prototype.pushType = function(signature, value) {
if (signature === "J" || signature === "D") {
this.push2(value);