Optional dataData to parse (string, array, or object)
Optional formatExplicit format (required for string data without file extension)
Optional fromFile path to read from
Optional preprocessWhether to preprocess custom blocks (<<< >>>) in the input. When enabled, custom block syntax is converted to properly quoted strings.
true
Optional preprocessWhether to preprocess quotes in the input to fix common copy/paste issues. When enabled, the parser will automatically escape unescaped quotes in string values.
true
Input options for the parser
Common ways to call:
from: 'tickets.csv'(auto-detect by extension)data: 'Project,Summary\nENG,Set up CI', format: 'csv'(inline CSV string)data: [{ Project: 'ENG', Summary: 'Create board' }](already-parsed JSON array)data: [['Project','Summary'], ['ENG','Do X']], format: 'csv'(array-of-arrays as CSV)Notes:
formatto be set.---separators (no indentation needed).null; quote them to keep empty strings.CSV string (requires
format: 'csv')Example
JSON array string
Example
YAML document stream string (no indentation needed)
Example