Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 222 Bytes

method-static-isValid.md

File metadata and controls

13 lines (11 loc) · 222 Bytes

static isValid

// static isValid(a1: string): boolean

/**
 * Checks A1 notation.
 */

// Example
A1.isValid('A1');   // true
A1.isValid('A1:B2');// true
A1.isValid('aaaaa');// false