| Current Path : /var/www/html/dynawebv3.blunetdev.com/node_modules/trim-newlines/ |
| Current File : /var/www/html/dynawebv3.blunetdev.com/node_modules/trim-newlines/index.js |
'use strict';
var fn = module.exports = function (x) {
return fn.end(fn.start(x));
};
fn.start = function (x) {
return x.replace(/^[\r\n]+/, '');
};
fn.end = function (x) {
return x.replace(/[\r\n]+$/, '');
};