UNPKG

n4s

Version:

typed schema validation version of enforce

7 lines (5 loc) 209 B
import { startsWith } from './startsWith'; // Checks if string does not start with the given prefix export function doesNotStartWith(str: string, start: string): boolean { return !startsWith(str, start); }