UNPKG

co-excel

Version:

Simple NodeJS Excel to JSON, ECMAScript 2015 Generator Funtion

13 lines (9 loc) 185 B
/** * Created by enmoon on 16-4-1. */ var excel = require('co-excel'); var handle = function *(next) { var uri = 'xxxx.xlsx'; var json = yield excel(uri); console.log(json); };