Gazebo_simulation-Frontend/node_modules/string.prototype.trimright/implementation.js

13 lines
454 B
JavaScript
Raw Normal View History

2020-12-21 11:29:31 -04:00
'use strict';
var bind = require('function-bind');
var replace = bind.call(Function.call, String.prototype.replace);
/* eslint-disable no-control-regex */
var rightWhitespace = /[\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF]*$/;
/* eslint-enable no-control-regex */
module.exports = function trimRight() {
return replace(this, rightWhitespace, '');
};