aboutsummaryrefslogtreecommitdiff
path: root/node_modules/trim-off-newlines/index.js
blob: 46e3d5729aa8d48bfe8a7abb7b53b6850f87c953 (plain)
1
2
3
4
5
6
7
'use strict';

var regex = /^(?:\r\n|\n|\r)+|(?:\r\n|\n|\r)+$/g;

module.exports = function (str) {
	return str.replace(regex, '');
};