├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commonjs └── package.json ├── index.ts ├── package.json ├── test ├── Index.spec.cjs ├── Index.spec.js └── config.json ├── tsconfig.base.json ├── tsconfig.commonjs.json └── tsconfig.json /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/README.md -------------------------------------------------------------------------------- /commonjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/package.json -------------------------------------------------------------------------------- /test/Index.spec.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/test/Index.spec.cjs -------------------------------------------------------------------------------- /test/Index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/test/Index.spec.js -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/test/config.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.commonjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/tsconfig.commonjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccormicka/string-argv/HEAD/tsconfig.json --------------------------------------------------------------------------------