UNPKG

@modelmap/a1-notation

Version:

Work with A1 notation like "A1" or "A1:B2"

10 lines (9 loc) 283 B
/** * @fileOverview Converts column letter to number * @author Flambino * @see https://codereview.stackexchange.com/questions/90112/a1notation-conversion-to-row-column-index * @param {string} col * * @return {number} */ export default function (col: string): number;