underscore-plus
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -227,3 +227,10 @@ (function() { | ||
multiplyString: function(string, n) { | ||
return new Array(1 + n).join(string); | ||
var finalString, i; | ||
finalString = ""; | ||
i = 0; | ||
while (i < n) { | ||
finalString += string; | ||
i++; | ||
} | ||
return finalString; | ||
}, | ||
@@ -230,0 +237,0 @@ pluralize: function(count, singular, plural) { |
{ | ||
"name": "underscore-plus", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Underscore plus additional utilities", | ||
@@ -5,0 +5,0 @@ "licenses": [ |
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
15232
447