forked from mirrors/action-gh-release
remove node_modules
This commit is contained in:
parent
c7638c8893
commit
60358a145c
444 changed files with 0 additions and 83958 deletions
15
node_modules/strip-eof/index.js
generated
vendored
15
node_modules/strip-eof/index.js
generated
vendored
|
@ -1,15 +0,0 @@
|
|||
'use strict';
|
||||
module.exports = function (x) {
|
||||
var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt();
|
||||
var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt();
|
||||
|
||||
if (x[x.length - 1] === lf) {
|
||||
x = x.slice(0, x.length - 1);
|
||||
}
|
||||
|
||||
if (x[x.length - 1] === cr) {
|
||||
x = x.slice(0, x.length - 1);
|
||||
}
|
||||
|
||||
return x;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue