Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / node_modules / underscore.string / lrpad.js
1 var pad = require('./pad');
2
3 module.exports = function lrpad(str, length, padStr) {
4   return pad(str, length, padStr, 'both');
5 };