Skip to main content
variable isLowerCase
import { isLowerCase } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Checks if a string is lower case.

Convert the given string to lower case, using String.toLowerCase() and compare it to the original.

type

(str: string) => unknown