Here you can find the source of leftPad(l, c)
String.prototype.leftPad = function (l, c) { return new Array(l - this.length + 1).join(c || ' ') + this; }
String.prototype.padLeft = function (totalLength, value) { if (this.length >= totalLength) return this; var str = this; while (str.length < totalLength) str = value + str; return str; };
'use strict'; String.prototype.padl = function(ch, len) { var s = this; while (s.length < len) { s = ch + s; return s; };
String.prototype.padl = function(ch, len) { var s = this; while (s.length < len) { s = ch + s; return s; };
String.prototype.paddingLeft = function(paddingValue) return String(paddingValue + this).slice(-paddingValue.length); };
String.prototype.leftPad = function (character, totalLength) { var s = this; while (s.length < totalLength) s = character + s; return s;