├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmessage ├── LICENSE.txt ├── README.md ├── coverage └── .keep ├── eslint.config.js ├── index.cjs ├── index.mjs ├── package.json ├── src └── index.js ├── test ├── index.test.js ├── mocha.opts ├── typescript.test.js └── typescript │ ├── index.test-d.ts │ └── tsconfig.json └── types └── index.d.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | node_modules 3 | -------------------------------------------------------------------------------- /.gitmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/.gitmessage -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/README.md -------------------------------------------------------------------------------- /coverage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/index.js'); 2 | -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/index.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui bdd 2 | --recursive 3 | -------------------------------------------------------------------------------- /test/typescript.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/test/typescript.test.js -------------------------------------------------------------------------------- /test/typescript/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/test/typescript/index.test-d.ts -------------------------------------------------------------------------------- /test/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/test/typescript/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/necojackarc/extensible-custom-error/HEAD/types/index.d.ts --------------------------------------------------------------------------------