UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 85 B
export function isAlphabeticUpper(text) { return !!text && /^[A-Z]+$/.test(text); }