pocomath/src/bigint/Types/bigint.mjs

7 lines
115 B
JavaScript

export const Types = {
bigint: {
before: ['Complex'],
test: b => typeof b === 'bigint'
}
}