{"version":3,"sources":["../../../source/sample/groups/infinity.ts","../../../source/sample/groups/nan.ts","../../../source/sample/groups/number.ts"],"names":["SAMPLE_INFINITIES","SAMPLE_NANS","SAMPLE_NUMBER","FALSY_NUMBERS","TRUTHY_NUMBERS","SAMPLE_NUMBERS"],"mappings":"AAAO,IAAMA,EAAoB,CAEhC,KACA,OAAO,kBAEP,IACA,OAAO,iBACR,ECNO,IAAMC,EAAc,CAE1B,IACA,OAAO,IAEA,IACP,OAAO,OAAO,GAAG,CAClB,ECLO,IAAMC,EAAgB,KAGhBC,EAAgB,CAC5B,GACA,EACA,EACA,GAAGF,CACJ,EAEaG,EAAiB,CAC7BF,EACA,GAAGF,EACH,OAAO,iBACP,OAAO,UACP,OAAO,QACP,OAAO,iBACP,OAAO,SACR,EAGaK,EAAiB,CAAC,GAAGF,EAAe,GAAGC,CAAc","sourcesContent":["export const SAMPLE_INFINITIES = [\n\t// eslint-disable-next-line unicorn/prefer-number-properties\n\t-Infinity,\n\tNumber.NEGATIVE_INFINITY,\n\t// eslint-disable-next-line unicorn/prefer-number-properties\n\tInfinity,\n\tNumber.POSITIVE_INFINITY,\n] as const;\n","/** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN} NaN - Not-A-Number */\nexport const SAMPLE_NANS = [\n\t// eslint-disable-next-line unicorn/prefer-number-properties\n\tNaN,\n\tNumber.NaN,\n\t// eslint-disable-next-line unicorn/prefer-number-properties\n\tNumber(NaN),\n\tNumber(Number.NaN),\n] as const;\n","import { SAMPLE_INFINITIES } from \"./infinity.ts\";\nimport { SAMPLE_NANS } from \"./nan.ts\";\n\nexport const SAMPLE_NUMBER = 1337;\n\n/* prettier-ignore */\nexport const FALSY_NUMBERS = [\n\t-0,\n\t0,\n\tNumber(),\n\t...SAMPLE_NANS,\n] as const;\n\nexport const TRUTHY_NUMBERS = [\n\tSAMPLE_NUMBER,\n\t...SAMPLE_INFINITIES,\n\tNumber.MIN_SAFE_INTEGER,\n\tNumber.MIN_VALUE,\n\tNumber.EPSILON,\n\tNumber.MAX_SAFE_INTEGER,\n\tNumber.MAX_VALUE,\n] as const;\n\n/** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number} Number */\nexport const SAMPLE_NUMBERS = [...FALSY_NUMBERS, ...TRUTHY_NUMBERS] as const;\n"]}