swc/bundler/tests/.cache/deno/e4420c1f014d74f39f8f0b4beaf283f65acb1bf2.ts

11 lines
287 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isUppercase.ts
// @ts-ignore allowing typedoc to build
import { assertString } from '../helpers/assertString.ts';
export const isUppercase = (str: string) => {
assertString(str);
return str === str.toUpperCase();
};