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

sprintf

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sprintf - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

5

lib/sprintf.js

@@ -244,4 +244,5 @@ /**

var vsprintf = function(fmt, argv) {
argv.unshift(fmt);
return sprintf.apply(null, argv);
var argvClone = argv.slice();
argvClone.unshift(fmt);
return sprintf.apply(null, argvClone);
};

@@ -248,0 +249,0 @@

2

package.json
{
"name": "sprintf",
"version": "0.1.2",
"version": "0.1.3",
"engines": {

@@ -5,0 +5,0 @@ "node" : ">=0.2.4"

@@ -7,4 +7,6 @@ # sprintf() for node

Since that library is now itself a node.js module, you should check that out: [alexei/sprintf.js](https://github.com/alexei/sprintf.js)
However there are some additions as well which have not been backported to alexei/sprintf.js yet.
There is also a [built-in util.format](http://nodejs.org/api/util.html#util_util_format_format).
## Install

@@ -14,2 +16,3 @@

## How to

@@ -16,0 +19,0 @@

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