Comparing version 0.0.3-alpha to 0.0.4-alpha
{ | ||
"name": "prime", | ||
"homepage": "https://github.com/mootools/prime", | ||
"version": "0.0.3-alpha", | ||
"main": "./main.js", | ||
"description": "prime, an OOP javascript library for node and the web.", | ||
"keywords": ["library", "framework", "es5", "class", "array", "object"], | ||
"author": "Valerio Proietti <@kamicane> (http://mad4milk.net)", | ||
"contributors": [ | ||
"Arian Stolwijk <@arian> (http://aryweb.nl)", | ||
"Olmo Maldonado <@ibolmo> (http://github.com/ibolmo)", | ||
"Christoph Pojer <@cpojer> (http://cpojer.net)" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/mootools/prime/issues" | ||
}, | ||
"license": "MIT (http://mootools.net/license.txt)", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/mootools/prime.git" | ||
} | ||
"name": "prime", | ||
"homepage": "https://github.com/mootools/prime", | ||
"version": "0.0.4-alpha", | ||
"main": "./main.js", | ||
"description": "prime, an OOP javascript library for node and the web.", | ||
"keywords": [ | ||
"library", | ||
"framework", | ||
"es5", | ||
"class", | ||
"array", | ||
"object" | ||
], | ||
"author": "Valerio Proietti <@kamicane> (http://mad4milk.net)", | ||
"contributors": [ | ||
"Arian Stolwijk <@arian> (http://aryweb.nl)", | ||
"Olmo Maldonado <@ibolmo> (http://github.com/ibolmo)", | ||
"Christoph Pojer <@cpojer> (http://cpojer.net)" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/mootools/prime/issues" | ||
}, | ||
"license": "MIT (http://mootools.net/license.txt)", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/mootools/prime.git" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": {}, | ||
"optionalDependencies": {}, | ||
"engines": { | ||
"node": "*" | ||
} | ||
} |
@@ -22,6 +22,7 @@ /* | ||
each = function(object, method, context){ | ||
for (var key in object) if (method.call(context, object[key], key, object) === false) return object | ||
var i = enumBugProps.length | ||
var i = buggy.length, key, value | ||
for (key in object) if (method.call(context, object[key], key, object) === false) return object | ||
while (i--){ | ||
var key = buggy[i], value = object[key] | ||
key = buggy[i] | ||
value = object[key] | ||
if (value !== proto[key] && method.call(context, value, key, object) === false) break | ||
@@ -28,0 +29,0 @@ } |
18186
620