MCPcopy
hub / github.com/slevithan/xregexp / MatchArray

Interface MatchArray

types/index.d.ts:230–242  ·  view source on GitHub ↗

* Represents an array of matched values if any.

Source from the content-addressed store, hash-verified

228 * Represents an array of matched values if any.
229 */
230 interface MatchArray extends RegExpMatchArray, Array<string> {
231 /**
232 * Named capture groups are accessible as properties when the `namespacing`
233 * feature is not installed.
234 */
235 [propName: string]: any;
236
237 /**
238 * This is only present if the the `namespacing` feature is installed
239 * using the `XRegExp.install` method.
240 */
241 groups?: NamedGroupsArray;
242 }
243
244 /**
245 * Represents an array of matched values.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…