Your IP : 216.73.217.62


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/trim-right/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/trim-right/index.js

'use strict';
module.exports = function (str) {
	var tail = str.length;

	while (/[\s\uFEFF\u00A0]/.test(str[tail - 1])) {
		tail--;
	}

	return str.slice(0, tail);
};