UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines (9 loc) 273 B
import { BaseMatcher } from "../BaseMatcher.js"; export class IsInteger extends BaseMatcher { matches(item, mismatch_description) { return Number.isInteger(item); } describeTo(description) { description.appendText("integer"); } }