aswi2020vldc-gitlab/templetes/node_modules/strip-eof/index.js @ 5fded919
1 | 3a515b92 | cagy | 'use strict'; |
---|---|---|---|
2 | module.exports = function (x) { |
||
3 | var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt(); |
||
4 | var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt(); |
||
5 | |||
6 | if (x[x.length - 1] === lf) { |
||
7 | x = x.slice(0, x.length - 1); |
||
8 | }
|
||
9 | |||
10 | if (x[x.length - 1] === cr) { |
||
11 | x = x.slice(0, x.length - 1); |
||
12 | }
|
||
13 | |||
14 | return x; |
||
15 | };
|