Blame view

node_modules/underscore.string/rtrim.js 423 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
10
  var makeString = require('./helper/makeString');
  var defaultToWhiteSpace = require('./helper/defaultToWhiteSpace');
  var nativeTrimRight = String.prototype.trimRight;
  
  module.exports = function rtrim(str, characters) {
    str = makeString(str);
    if (!characters && nativeTrimRight) return nativeTrimRight.call(str);
    characters = defaultToWhiteSpace(characters);
    return str.replace(new RegExp(characters + '+$'), '');
  };