Remove an erroneous npm-debug.log, disable failing test

Driveby fix: fix a few linter warnings and actually have CI linting things.
This commit is contained in:
impinball 2016-03-02 13:44:42 -05:00
parent 17acef768f
commit 55b99dd0e2
9 changed files with 136 additions and 145 deletions

View file

@ -33,8 +33,10 @@
Object.keys = Object.keys || function (obj) {
var keys = []
for (var i in obj) if ({}.hasOwnProperty.call(obj, i)) {
keys.push(i)
for (var i in obj) {
if ({}.hasOwnProperty.call(obj, i)) {
keys.push(i)
}
}
return keys
}