wallet-core/node_modules/trim-off-newlines/index.js
2017-08-14 05:02:09 +02:00

8 lines
135 B
JavaScript

'use strict';
var regex = /^(?:\r\n|\n|\r)+|(?:\r\n|\n|\r)+$/g;
module.exports = function (str) {
return str.replace(regex, '');
};