UNPKG

189 BJavaScriptView Raw
1import { Predicate } from './predicate.js';
2export class BigIntPredicate extends Predicate {
3 /**
4 @hidden
5 */
6 constructor(options) {
7 super('bigint', options);
8 }
9}