UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

5 lines (4 loc) 181 B
/** Helper type to ensure that the given string starts with an lowercase letter. */ export type StartsWithLowercase<S> = S extends string ? Extract<S, Uncapitalize<S>> : never;