UNPKG

n4s

Version:

typed schema validation version of enforce

7 lines (5 loc) 201 B
import { endsWith } from './endsWith'; // Checks if string does not end with the given suffix export function doesNotEndWith(str: string, ending: string): boolean { return !endsWith(str, ending); }