MCPcopy
hub / github.com/angular/angular / asyncValidatorReturningObservable

Function asyncValidatorReturningObservable

packages/forms/test/util.ts:87–93  ·  view source on GitHub ↗
(c: AbstractControl)

Source from the content-addressed store, hash-verified

85 * @param c The control instance
86 */
87export function asyncValidatorReturningObservable(c: AbstractControl): EventEmitter<any> {
88 const e = new EventEmitter();
89 queueMicrotask(() => {
90 e.emit({'async': true});
91 });
92 return e;
93}

Callers

nothing calls this directly

Calls 1

emitMethod · 0.95

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…