Version 1
[yaffs-website] / node_modules / underscore.string / vsprintf.js
diff --git a/node_modules/underscore.string/vsprintf.js b/node_modules/underscore.string/vsprintf.js
new file mode 100644 (file)
index 0000000..b68178d
--- /dev/null
@@ -0,0 +1,6 @@
+var sprintf = require('./sprintf');
+
+module.exports = function vsprintf(fmt, argv) {
+  argv.unshift(fmt);
+  return sprintf.apply(null, argv);
+};