UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

10 lines 211 B
/** * performs instanceof match * @param {function} type * @returns {function(*): boolean} */ export function isInstanceOf(type) { return function (m) { return m instanceof type; } }