Blame view

node_modules/underscore.string/lpad.js 121 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
  var pad = require('./pad');
  
  module.exports = function lpad(str, length, padStr) {
    return pad(str, length, padStr);
  };