{"version":3,"sources":["../../../source/sample/groups/boolean.ts"],"names":["FALSY_BOOLEANS","TRUTHY_BOOLEANS","SAMPLE_BOOLEANS"],"mappings":"AAAO,IAAMA,EAAiB,CAC7B,GACQ,GACR,GACA,EAAQ,EACR,EAAQ,GAER,EAAQ,OAER,EAAQ,IACT,EAGaC,EAAkB,CAC9B,GACQ,GACR,EAAQ,EACR,EAAQ,GACT,EAGaC,EAAkB,CAAC,GAAGF,EAAgB,GAAGC,CAAe","sourcesContent":["export const FALSY_BOOLEANS = [\n\tfalse,\n\tBoolean(false),\n\tBoolean(),\n\tBoolean(0),\n\tBoolean(\"\"),\n\t// eslint-disable-next-line unicorn/no-useless-undefined\n\tBoolean(undefined),\n\t// eslint-disable-next-line unicorn/no-null\n\tBoolean(null),\n] as const;\n\n/* prettier-ignore */\nexport const TRUTHY_BOOLEANS = [\n\ttrue,\n\tBoolean(true),\n\tBoolean(1),\n\tBoolean(\"a\"),\n] as const;\n\n/** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean} */\nexport const SAMPLE_BOOLEANS = [...FALSY_BOOLEANS, ...TRUTHY_BOOLEANS] as const;\n"]}