1
0
mirror of https://gitea.com/actions/setup-python.git synced 2025-05-05 23:36:48 +08:00
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

11 lines
168 B
JavaScript

'use strict';
module.exports = function (str) {
var tail = str.length;
while (/[\s\uFEFF\u00A0]/.test(str[tail - 1])) {
tail--;
}
return str.slice(0, tail);
};