Skip to content

Instantly share code, notes, and snippets.

@joeattardi
Created March 18, 2024 01:27
Show Gist options
  • Select an option

  • Save joeattardi/dadbc282c8cb7694779e705a20bc9cef to your computer and use it in GitHub Desktop.

Select an option

Save joeattardi/dadbc282c8cb7694779e705a20bc9cef to your computer and use it in GitHub Desktop.
async function getLinesArray(file) {
return new Promise((resolve) => {
const readLines = file.readLines();
const lines = [];
readLines.on('line', input => lineValues.push());
readLines.on('close', () => resolve(lines));
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment