Version 1
[yaffs-website] / node_modules / underscore.string / lrpad.js
diff --git a/node_modules/underscore.string/lrpad.js b/node_modules/underscore.string/lrpad.js
new file mode 100644 (file)
index 0000000..e3162b0
--- /dev/null
@@ -0,0 +1,5 @@
+var pad = require('./pad');
+
+module.exports = function lrpad(str, length, padStr) {
+  return pad(str, length, padStr, 'both');
+};