UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

7 lines (6 loc) 204 B
/** * Returns true iff all elements in the shorter list equal (===) the elements * in the longer list. */ declare const listPrefixMatch: <T>(a: T[], b: T[]) => boolean; export default listPrefixMatch;