New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

prime

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prime - npm Package Compare versions

Comparing version 0.0.3-alpha to 0.0.4-alpha

53

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc