biofriction-wp-theme/node_modules/trim-right/index.js

11 lines
168 B
JavaScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
'use strict';
module.exports = function (str) {
var tail = str.length;
while (/[\s\uFEFF\u00A0]/.test(str[tail - 1])) {
tail--;
}
return str.slice(0, tail);
};