PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
string
var toString = require('../lang/toString'); var repeat = require('./repeat'); /** * Pad string with `char` if its' length is smaller than `minLen` */ function lpad(str, minLen, ch) { str = toString(str); ch = ch || ' '; return (str.length < minLen) ? repeat(ch, minLen - str.length) + str : str; } module.exports = lpad;
[-] unescapeHtml.js
[edit]
[-] underscore.js
[edit]
[-] lowerCase.js
[edit]
[-] lpad.js
[edit]
[-] removeNonASCII.js
[edit]
[-] camelCase.js
[edit]
[+]
..
[-] truncate.js
[edit]
[-] upperCase.js
[edit]
[-] contains.js
[edit]
[-] WHITE_SPACES.js
[edit]
[-] hyphenate.js
[edit]
[-] insert.js
[edit]
[-] unhyphenate.js
[edit]
[-] replaceAccents.js
[edit]
[-] endsWith.js
[edit]
[-] sentenceCase.js
[edit]
[-] rtrim.js
[edit]
[-] escapeRegExp.js
[edit]
[-] properCase.js
[edit]
[-] rpad.js
[edit]
[-] replace.js
[edit]
[-] normalizeLineBreaks.js
[edit]
[-] escapeUnicode.js
[edit]
[-] crop.js
[edit]
[-] ltrim.js
[edit]
[-] startsWith.js
[edit]
[-] pascalCase.js
[edit]
[-] trim.js
[edit]
[-] removeNonWord.js
[edit]
[-] escapeHtml.js
[edit]
[-] slugify.js
[edit]
[-] stripHtmlTags.js
[edit]
[-] typecast.js
[edit]
[-] unCamelCase.js
[edit]
[-] interpolate.js
[edit]
[-] repeat.js
[edit]
[-] makePath.js
[edit]
[-] unescapeUnicode.js
[edit]