├── .eslintrc.js ├── .github ├── CODEOWNERS └── workflows │ └── ci.yaml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── as-pect.config.js ├── asconfig.json ├── assembly ├── BigInt.ts ├── __tests__ │ ├── TestCase.ts │ ├── algebraic_operations.spec.ts │ ├── arithmetic_operations.spec.ts │ ├── as-pect.d.ts │ ├── bitwise_operations.spec.ts │ ├── comparison_operators.spec.ts │ ├── construction.spec.ts │ ├── generics.spec.ts │ └── operator_overloads.spec.ts └── index.ts ├── index.js ├── package.json ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @krisbit -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/README.md -------------------------------------------------------------------------------- /as-pect.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/as-pect.config.js -------------------------------------------------------------------------------- /asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/asconfig.json -------------------------------------------------------------------------------- /assembly/BigInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/BigInt.ts -------------------------------------------------------------------------------- /assembly/__tests__/TestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/TestCase.ts -------------------------------------------------------------------------------- /assembly/__tests__/algebraic_operations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/algebraic_operations.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/arithmetic_operations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/arithmetic_operations.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/as-pect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/as-pect.d.ts -------------------------------------------------------------------------------- /assembly/__tests__/bitwise_operations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/bitwise_operations.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/comparison_operators.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/comparison_operators.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/construction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/construction.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/generics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/generics.spec.ts -------------------------------------------------------------------------------- /assembly/__tests__/operator_overloads.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/assembly/__tests__/operator_overloads.spec.ts -------------------------------------------------------------------------------- /assembly/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./BigInt"; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polywrap/as-bigint/HEAD/yarn.lock --------------------------------------------------------------------------------