UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 149 B
// Checks if string starts with the given prefix export function startsWith(str: string, start: string): boolean { return str.startsWith(start); }