mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-18 08:13:39 -05:00
5 lines
195 B
JavaScript
5 lines
195 B
JavaScript
'use strict';
|
|
module.exports = x => x.replace(/^[\r\n]+/, '').replace(/[\r\n]+$/, '');
|
|
module.exports.start = x => x.replace(/^[\r\n]+/, '');
|
|
module.exports.end = x => x.replace(/[\r\n]+$/, '');
|