UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

12 lines (9 loc) 260 B
import { BaseMatcher } from "../BaseMatcher.js"; export class IsNull extends BaseMatcher { matches(item, mismatch_description) { return item === null; } describeTo(description) { description.appendText("null"); } }