Comparing version 0.2.5 to 0.2.6
@@ -7,5 +7,12 @@ ;(function () { | ||
trim: function (string) { | ||
if (!string) { | ||
return ''; | ||
} | ||
string = '' + string; | ||
return string.replace(RGX_TRIM_BEFORE, '').replace(RGX_TRIM_AFTER, ''); | ||
}, | ||
each: function (object, callback) { | ||
if (!object) { | ||
return; | ||
} | ||
for (var key in object) { | ||
@@ -12,0 +19,0 @@ if (object.hasOwnProperty(key)) { |
{ | ||
"name": "lazytest", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "A project from matriks2 seed", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
3372697
20851