UNPKG

@yuanqing/google-sheets

Version:

An easier interface to read from and write to Google Sheets

10 lines (8 loc) 193 B
function extractColumnRange (range) { const matches = range.match(/!([A-Z]+)\d+:([A-Z]+)\d+/) return { start: matches[1], end: matches[2] } } module.exports = extractColumnRange