Skip to content

Instantly share code, notes, and snippets.

@bgrins
Last active May 4, 2022 15:15
Show Gist options
  • Save bgrins/34f5dce63885d8544dd525d78ade8ec8 to your computer and use it in GitHub Desktop.
Save bgrins/34f5dce63885d8544dd525d78ade8ec8 to your computer and use it in GitHub Desktop.
export function transform(data, options) {
console.log(data, options);
return data;
}
export function transform(data, options) {
let todos = [];
for (let row of data.split("\r\n")) {
let cols = row.split(",");
todos.push({
id: cols[2],
content: cols[0],
due: cols[1],
});
}
return todos;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment