|
|
|
|
|
by chvid
3747 days ago
|
|
You need to go something like: module.exports = function leftpad (str, len, ch) { return Array(Math.max(0, len - String(str).length)).join(ch || ' ') + String(str); };
Unfortunately we need to wrap str twice so maybe a one-liner is not quite in place. |
|
http://jsperf.com/leftpadtesting
Repeat + slice is too
http://jsperf.com/leftpad