All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.index.js Maven / Gradle / Ivy

The newest version!
module.exports = function(str, width, char) {
  char = char || "0";
  str = str.toString();
  while (str.length < width)
    str = char + str;
  return str;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy