0.0.1 • Published 5 years ago

@chuidylan/xls2json v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

XLS2JSON

Copy from https://www.npmjs.com/package/xls2json

个人专用版本

Install

npm install @chuidylan/xls2json --save

const xls2json = require('@chuidylan/xls2json')

Library Usage

var xls2json = require('xls2json');

xls2json.convertFile(infile,outpath,function(err,result, data){
	if (err){
		// there was an error
	}else{
		// it's all good
	}

	// 回调函数增加json数据输出
	// 移除数据写入文件功能
});