Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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