contro-max
Version:
Game controls done in the best possible way!
6 lines (5 loc) • 298 B
JavaScript
// TODO should be TS builtin behavior
// Only for TypeScript narrowing of command type
export const stringStartsWith = (str, search) => str.startsWith(search);
export const stringEndsWith = (str, search) => str.endsWith(search);
export const stringIncludes = (str, search) => str.includes(search);