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