├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.ts ├── jsdoc.json ├── package.json ├── rollup.config.js ├── setup-jest.js ├── src ├── README.md ├── attributes.json ├── constants.ts ├── id.ts ├── index.ts ├── interface.ts ├── poa.ts └── utils.ts ├── tests ├── data │ ├── ids.json │ ├── keys.js │ ├── old-ids.json │ └── test-vectors.json ├── id.test.js ├── index.test.js ├── regression.test.js └── utils.test.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/jsdoc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/rollup.config.js -------------------------------------------------------------------------------- /setup-jest.js: -------------------------------------------------------------------------------- 1 | require('jest-fetch-mock').enableMocks() 2 | -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/README.md -------------------------------------------------------------------------------- /src/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/attributes.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/id.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/poa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/poa.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/data/ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/data/ids.json -------------------------------------------------------------------------------- /tests/data/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/data/keys.js -------------------------------------------------------------------------------- /tests/data/old-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/data/old-ids.json -------------------------------------------------------------------------------- /tests/data/test-vectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/data/test-vectors.json -------------------------------------------------------------------------------- /tests/id.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/id.test.js -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/regression.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/regression.test.js -------------------------------------------------------------------------------- /tests/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tests/utils.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icellan/bap/HEAD/yarn.lock --------------------------------------------------------------------------------