UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines (9 loc) 277 B
import { BaseMatcher } from "../BaseMatcher.js"; export class IsUndefined extends BaseMatcher { matches(item, mismatch_description) { return item === undefined; } describeTo(description) { description.appendText("undefined"); } }