Nodejs String Padding Left padl(ch, len)

Here you can find the source of padl(ch, len)

Method Source Code

String.prototype.padl = function(ch, len) {
    var s = this;
    while (s.length < len) {
        s = ch + s;/*from  ww  w  .  j a v a2 s .  co  m*/
    }
    return s;
};

Related

  1. padLeft(paddingValue)
    String.prototype.padLeft = function (paddingValue) {
      return String(paddingValue + this).slice(-paddingValue.length);
    };
    
  2. padLeft(size, char)
    String.prototype.padLeft = function (size, char) {
        if (size === 0) {
            return '';
        return (Array(size + 1).join(char) + this).slice(-size);
    };
    
  3. padLeft(size, prefix)
    (function(){
    String.prototype.padLeft = function(size, prefix) {
        prefix = prefix || " ";
        var s = ''+this;
        while (s.length < size) s = prefix + s;
        return s;
    };
    Math.randInt = function(min, max){
      return Math.floor(Math.random() * (max - min + 1)) + min;
    ...
    
  4. padLeft(totalLength, value)
    String.prototype.padLeft = function (totalLength, value) {
      if (this.length >= totalLength)
        return this;
      var str = this;
      while (str.length < totalLength)
        str = value + str;
      return str;
    };
    
  5. padl(ch, len)
    'use strict';
    String.prototype.padl = function(ch, len) {
        var s = this;
        while (s.length < len) {
            s = ch + s;
        return s;
    };
    
  6. paddingLeft(paddingValue)
    String.prototype.paddingLeft = function(paddingValue)
      return String(paddingValue + this).slice(-paddingValue.length);
    };
    
  7. leftPad(character, totalLength)
    String.prototype.leftPad = function (character, totalLength) {
        var s = this;
        while (s.length < totalLength)
            s = character + s;
        return s;
    
  8. leftPad(l, c)
    String.prototype.leftPad = function (l, c) { 
      return new Array(l - this.length + 1).join(c || ' ') + this;