Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / string / padRight.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/string/padRight.js b/node_modules/grunt-legacy-log/node_modules/lodash/string/padRight.js
new file mode 100644 (file)
index 0000000..dc12f55
--- /dev/null
@@ -0,0 +1,27 @@
+var createPadDir = require('../internal/createPadDir');
+
+/**
+ * Pads `string` on the right side if it's shorter than `length`. Padding
+ * characters are truncated if they exceed `length`.
+ *
+ * @static
+ * @memberOf _
+ * @category String
+ * @param {string} [string=''] The string to pad.
+ * @param {number} [length=0] The padding length.
+ * @param {string} [chars=' '] The string used as padding.
+ * @returns {string} Returns the padded string.
+ * @example
+ *
+ * _.padRight('abc', 6);
+ * // => 'abc   '
+ *
+ * _.padRight('abc', 6, '_-');
+ * // => 'abc_-_'
+ *
+ * _.padRight('abc', 3);
+ * // => 'abc'
+ */
+var padRight = createPadDir(true);
+
+module.exports = padRight;