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

neuro-is

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neuro-is - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

34

package.json
{
"author": "Garrick Cheung <garrick@garrickcheung.com> (http://garrickcheung.com)",
"name": "neuro-is",
"description": "MooTools Type-Test Utility",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/GCheung55/Is.js.git"
},
"main": "Source/Is.js",
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}
"author": "Garrick Cheung <garrick@garrickcheung.com> (http://garrickcheung.com)",
"name": "neuro-is",
"description": "MooTools Type-Test Utility",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "git://github.com/GCheung55/Is.js.git"
},
"main": "Source/Is.js",
"dependencies": {
"mootools": ">=1.4.5"
},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}

@@ -12,11 +12,11 @@ /**

(function(context){
(function(context, global){
var toString = Object.prototype.toString,
hasOwnProperty = Object.prototype.hasOwnProperty,
oldType = window.Type,
oldType = global.Type,
Is = context.Is = {};
// Wrap oldType so that any new Type will also add to Is object
var Type = window.Type = function(name, object){
var Type = global.Type = function(name, object){
var obj = new oldType(name, object),

@@ -174,2 +174,2 @@ str;

})(typeof exports != 'undefined' ? exports : window);
})(typeof exports != 'undefined' ? exports : window, this.window || global);
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