Skip to content

Instantly share code, notes, and snippets.

@yaggytter
Created September 4, 2021 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaggytter/f74feeede736c8161bd0eee225a161b4 to your computer and use it in GitHub Desktop.
Save yaggytter/f74feeede736c8161bd0eee225a161b4 to your computer and use it in GitHub Desktop.
convert from ndjson to json (Javascript) (JavascriptでNDJSONからJSONに変換)
```
var json = "[" + ndjson.replace(/\r?\n/g, ",").replace(/,\s*$/, "") + "]";
var jsondata = JSON.parse(json);
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment