0.0.1 • Published 4 years ago

@bojangles/txt2json v0.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

Transform txt file into json

Format of txt file

// separated with \t & \r
1141269 Ghazni	Ghazni  Asia/Kabul  2018-02-17
2766429 Sankt Pölten  Sankt Poelten Europe/Vienna 2019-09-05
....

How to use it

const input = 'path/to/file.txt';
const output = 'path/where/to/put/file.json';
const porperties = [
  'id',
  'name',
  'asciiname'
  'tz',
  'lastModified',
]

txt2json(input, output, porperties);