Skip to content

Instantly share code, notes, and snippets.

View phamhuy361995's full-sized avatar
🎯
Focusing

Pham Huy phamhuy361995

🎯
Focusing
View GitHub Profile
@phamhuy361995
phamhuy361995 / sheet2json.gs
Created June 3, 2024 08:33 — forked from NoCtrlZ1110/sheet2json.gs
Convert a google sheet to json
const toJson = (values = []) => {
if (!values || values.length <= 1) return [];
const [keys, ...data] = values;
const result = data.map(
(row) => {
const object = {};
keys.forEach((key, index) => object[key] = row[index]);
return object;
}
);