diff options
Diffstat (limited to 'node_modules/trim-off-newlines/index.js')
-rw-r--r-- | node_modules/trim-off-newlines/index.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/trim-off-newlines/index.js b/node_modules/trim-off-newlines/index.js deleted file mode 100644 index 46e3d5729..000000000 --- a/node_modules/trim-off-newlines/index.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict'; - -var regex = /^(?:\r\n|\n|\r)+|(?:\r\n|\n|\r)+$/g; - -module.exports = function (str) { - return str.replace(regex, ''); -}; |