mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
10 lines
168 B
JavaScript
10 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);
|
|
};
|