不要怂,就是干,撸起袖子干!

Commit 82c81154 by Jan Aagaard Meier

remove isEmptyObject - something weird happened in merge

1 parent 13b862f2
Showing with 0 additions and 6 deletions
......@@ -51,12 +51,6 @@ var Utils = module.exports = {
isHash: function(obj) {
return Utils._.isObject(obj) && !Array.isArray(obj);
},
isEmptyObject: function( obj ) {
for ( var name in obj ) {
return false;
}
return true;
},
pad: function (s) {
return s < 10 ? '0' + s : s
},
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!