Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 602 Bytes

readme-content.md

File metadata and controls

25 lines (21 loc) · 602 Bytes

Usage

If within a trigger's event handler an instance of ParseCsvStep similar to the following were to be returned:

new ParseCsvStep(
  `A description of the operation being performed`,
  new ConstantInput(`Example AA, Example AB, Example AC
Example BA, Example BB, Example BC
Example CA, Example CB, Example CC`
  ),
  new OutputForParsedCsv()
);

An array similar to the following would be written to the output:

[
  [`Example AA`, `Example AB`, `Example AC`],
  [`Example BA`, `Example BB`, `Example BC`],
  [`Example CA`, `Example CB`, `Example CC`],
];