UNPKG

n4s

Version:

typed schema validation version of enforce

5 lines (4 loc) 145 B
// Checks if string ends with the given suffix export function endsWith(str: string, ending: string): boolean { return str.endsWith(ending); }