Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

matcher

Given the specified selector, returns a function which returns true if "this" element matches the specified selector.

function matcher(selector: string): (this: BaseType) => boolean;
§
matcher(selector: string): (this: BaseType) => boolean
[src]

§Parameters

§
selector: string
[src]

A CSS selector string.

§Return Type

§
(this: BaseType) => boolean
[src]