Moved all source files into /src

Created dir /src, and moved the source files into it. Left package.json, README.md and settings.json out.
Modified package.json to point to the new src dir.
This commit is contained in:
ShakedAp
2023-06-25 09:13:57 +03:00
parent bfdd897a20
commit 11ff6f9547
732 changed files with 2 additions and 2 deletions

8
src/node_modules/has-flag/index.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
module.exports = (flag, argv) => {
argv = argv || process.argv;
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
const pos = argv.indexOf(prefix + flag);
const terminatorPos = argv.indexOf('--');
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
};