Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

underscore-plus

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

underscore-plus - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

9

lib/underscore-plus.js

@@ -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) {

2

package.json
{
"name": "underscore-plus",
"version": "1.2.1",
"version": "1.2.2",
"description": "Underscore plus additional utilities",

@@ -5,0 +5,0 @@ "licenses": [

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