Projekt

Obecné

Profil

Stáhnout (168 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
module.exports = function (str) {
3
	var tail = str.length;
4
5
	while (/[\s\uFEFF\u00A0]/.test(str[tail - 1])) {
6
		tail--;
7
	}
8
9
	return str.slice(0, tail);
10
};