summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/rtrim.js
blob: b96cb575018d0732bc5a0508bf20b598df32cf28 (plain)
1
2
3
4
5
6
7
import assertString from './util/assertString';
export default function rtrim(str, chars) {
  assertString(str); // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Escaping

  var pattern = chars ? new RegExp("[".concat(chars.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), "]+$"), 'g') : /\s+$/g;
  return str.replace(pattern, '');
}