UNPKG

@modelmap/a1-notation

Version:

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

10 lines (9 loc) 284 B
/** * @fileOverview Converts column number to letter * @author AdamL * @see https://stackoverflow.com/questions/21229180/convert-column-index-into-corresponding-column-letter * @param {number} col * * @return {string} */ export default function (col: number): string;