mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
11 lines
168 B
JavaScript
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);
|
|
};
|