{"version":3,"sources":["../../../source/sample/groups/string.ts"],"names":["SAMPLE_STRING","FALSY_STRINGS","NUMERIC_STRINGS","TRUTHY_STRINGS","SAMPLE_STRINGS"],"mappings":"AAAO,IAAMA,EAAgB,0BAGhBC,EAAgB,CAC5B,GACA,GACA,GACA,GACO,GACA,GACA,EACR,EAEaC,EAAkB,CAC9B,YACA,aACA,aACA,cACA,eACA,gBACA,aACA,QACA,OACA,UACA,WACA,WACD,EAEaC,EAAiB,CAC7B,gCACA,gCACA,iDACA,GAAGD,CACJ,EAGaE,EAAiB,CAAC,GAAGH,EAAe,GAAGE,CAAc","sourcesContent":["export const SAMPLE_STRING = \"terminal-nerds.DEV@2023\";\n\n/* prettier-ignore */\nexport const FALSY_STRINGS = [\n\t\"\",\n\t'',\n\t``,\n\tString(),\n\tString(\"\"),\n\tString(''),\n\tString(``),\n] as const;\n\nexport const NUMERIC_STRINGS = [\n\t\"123456789\",\n\t\"-123456789\",\n\t\"123.456789\",\n\t\"-123.456789\",\n\t\" 123.456789 \",\n\t\" -123.456789 \",\n\t\"0b11111111\", // 255\n\t\"0o377\", // 255\n\t\"0xFF\", // 255\n\t\"10e1000\",\n\t\"Infinity\",\n\t\"-Infinity\",\n] as const;\n\nexport const TRUTHY_STRINGS = [\n\t'string from double quotes (\")',\n\t\"string from single quotes (')\",\n\t`string from backtick - ${\"template literals\"} - (\\`)`,\n\t...NUMERIC_STRINGS,\n] as const;\n\n/** @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String} String */\nexport const SAMPLE_STRINGS = [...FALSY_STRINGS, ...TRUTHY_STRINGS] as const;\n"]}