Removed some methods from the JS REPL

This commit is contained in:
obscuren
2015-02-28 19:15:57 +01:00
parent cc5c8a444d
commit 6ea7aae29c
7 changed files with 25 additions and 54 deletions

View File

@ -16,7 +16,7 @@ function pp(object) {
str += " ]";
} else if(typeof(object) === "object") {
str += "{ ";
var last = Object.keys(object).sort().pop()
var last = Object.keys(object).pop()
for(var k in object) {
str += k + ": " + pp(object[k]);