pocomath/src/bigint/Types/bigint.mjs

8 lines
221 B
JavaScript

import PocomathInstance from '../../core/PocomathInstance.mjs'
const BigInt = new PocomathInstance('BigInt')
BigInt.installType('bigint', {
before: ['Complex'],
test: b => typeof b === 'bigint'
})
export {BigInt}