{"version":3,"sources":["../../../source/sample/groups/bigint.ts"],"names":["SAMPLE_BIG_INT","FALSY_BIG_INTS","TRUTHY_BIG_INTS","SAMPLE_BIG_INTS"],"mappings":"AAAO,IAAMA,EAAiB,OAAO,GAAG,EAE3BC,EAAiB,CAC7B,GACA,CAAC,GACD,OAAO,CAAC,EACR,OAAO,EAAE,CACV,EAEaC,EAAkB,CAC9B,OAAO,OAAO,gBAAgB,EAC9B,OAAO,OAAO,gBAAgB,EAC9B,OAAO,OAAO,SAAS,CACxB,EAGaC,EAAkB,CAAC,GAAGF,EAAgB,GAAGC,CAAe","sourcesContent":["export const SAMPLE_BIG_INT = BigInt(987);\n/* prettier-ignore */\nexport const FALSY_BIG_INTS = [\n\t0n,\n\t-0n,\n\tBigInt(0),\n\tBigInt(-0),\n] as const;\n\nexport const TRUTHY_BIG_INTS = [\n\tBigInt(Number.MIN_SAFE_INTEGER),\n\tBigInt(Number.MAX_SAFE_INTEGER),\n\tBigInt(Number.MAX_VALUE),\n] as const;\n\n/** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt} */\nexport const SAMPLE_BIG_INTS = [...FALSY_BIG_INTS, ...TRUTHY_BIG_INTS] as const;\n"]}