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

Interface ExecArray

types/index.d.ts:247–259  ·  view source on GitHub ↗

* Represents an array of matched values.

Source from the content-addressed store, hash-verified

245 * Represents an array of matched values.
246 */
247 interface ExecArray extends RegExpExecArray, Array<string> {
248 /**
249 * Named capture groups are accessible as properties when the `namespacing`
250 * feature is not installed.
251 */
252 [propName: string]: any;
253
254 /**
255 * This is only present if the the `namespacing` feature is installed
256 * using the `XRegExp.install` method.
257 */
258 groups?: NamedGroupsArray;
259 }
260
261 /**
262 * An element in a `MatchChainArray` that specifies a regex and a backreference to pass forward.

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…