├── .eslintignore ├── .github └── workflows │ └── main_ci.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── cjs │ ├── index.cjs │ └── index.d.cts └── esm │ ├── index.d.ts │ └── index.js ├── test ├── fixtures.json └── index.js ├── ts_src └── index.ts ├── tsconfig.base.json ├── tsconfig.cjs.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.d.ts -------------------------------------------------------------------------------- /.github/workflows/main_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/.github/workflows/main_ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/package.json -------------------------------------------------------------------------------- /src/cjs/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/src/cjs/index.cjs -------------------------------------------------------------------------------- /src/cjs/index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/src/cjs/index.d.cts -------------------------------------------------------------------------------- /src/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/src/esm/index.d.ts -------------------------------------------------------------------------------- /src/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/src/esm/index.js -------------------------------------------------------------------------------- /test/fixtures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/test/fixtures.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/test/index.js -------------------------------------------------------------------------------- /ts_src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/ts_src/index.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptocoinjs/bs58/HEAD/tsconfig.json --------------------------------------------------------------------------------