Comparing version 0.0.1 to 0.0.2
{ | ||
"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); |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Non-existent author
Supply chain riskThe package was published by an npm account that no longer exists.
Found 1 instance in 1 package
6041
0
1
1
+ Addedmootools@>=1.4.5
+ Addedmootools@1.5.2(transitive)