Locaft-backend/auth/node_modules/validator/es/lib/rtrim.js

7 lines
360 B
JavaScript
Raw Normal View History

2020-11-08 09:28:21 -08:00
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, '');
}