Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "protos.js", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "String and Array prototypes for a more easy life", | ||
@@ -5,0 +5,0 @@ "main": "protos.js", |
@@ -124,2 +124,6 @@ /* | ||
String.prototype.contains = function(str) { | ||
return (this.toString().indexOf(str) > -1); | ||
} | ||
Array.prototype.has = function(item) { | ||
@@ -126,0 +130,0 @@ if (this.length == 0) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5180
125