Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 392 Bytes

File metadata and controls

27 lines (20 loc) · 392 Bytes

static toCol

// static toCol(col: number): string

/**
 * Converts number to column letter in A1.
 */

// Example
A1.toCol(1); // 'A'
A1.toCol('A1'); // Error

static toRow

// static toRow(row: number): string

/**
 * Converts number to row string in A1.
 */

// Example
A1.toRow(1); // '1'
A1.toRow('A1'); // Error