Skip to content

AungMyoKyaw/tsvtojson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tsvtojson

tsv <=> json

Build Status code style: prettier npm contributions welcome License: MIT

Installation

npm install --save tsvtojson

Example

const tsvtojson = require('tsvtojson');
tsvtojson('./file/path.ext', ['header1', 'header2', 'header3'])
  .then(data => {
    console.log(data);
  })
  .catch(err => {
    console.log(err);
  });

LICENSE

MIT © Aung Myo Kyaw