aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/frontend/eoltrim.js
blob: d42c48d7b4f258dd8085bedf8fca0448cba53eb0 (plain)
1
2
3
4
5
// Trims leading and trailing newlines from a string (eoltrim.js)
HashOverConstructor.prototype.EOLTrim = function (string)
{
	return string.replace (this.regex.EOLTrim, '');
};