1.2.1 • Published 5 years ago

converter-csv-to-json v1.2.1

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

converter-csv-to-json

Special Note:

  • First row of your CSV file must contain all the titles of related columns.
  • Selector is your input tag id
<input type="file" id="my-id"/>
import {csvtojson} from "converter-csv-to-json";

async function convertToJson(){
	
	let jsonData = await csvtojson({
	"selector": "my-id",
	"delimiter": ","
	});

	console.log(josnData);
}

// Result

{
     "data":[{
		"name" : "your name",
		"address" : "your address",
		"contact" : "1234567890"
	},{
		"name" : "your name 1",
		"address" : "your address 1",
		"contact" : "1234567890"
	}]
}
1.2.1

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago