UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

7 lines 201 B
/** * Check if a string is lowercase. * * @param str - The string to check * @returns True if the string is lowercase, false otherwise */ export declare function isLowercase(str: string): boolean;