mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02: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);
|
|
};
|