google-sheet-to-data
Version:
convert google spread sheet to json or matrix
16 lines (11 loc) • 315 B
JavaScript
/**
* Created by hyunwoo on 2017-01-16.
*/
var lib = require('../lib/google-sheet-to-data');
var sheet = lib('1rN_WrsmnvGckpuQqgY-X6OOYuU9C2Hfy8iWT-acChIE');
sheet.matrix(2, function (err, rep) {
console.log(err, rep);
});
sheet.json(2, function (err, rep) {
console.log(err, rep);
});