mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
3bca9db4a5
Correct various Useless regular-expression character escape issues. PR Close #51554
19 lines
517 B
TypeScript
19 lines
517 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
/**
|
|
* Verifies that there is exactly one factory definition for the provided type.
|
|
*/
|
|
export function verifyUniqueFactory(output: string, type: string): boolean {
|
|
const matches = output.match(new RegExp(type + '.ɵfac =', 'g'));
|
|
if (matches === null) {
|
|
return false;
|
|
}
|
|
return matches.length === 1;
|
|
}
|