Moves the merge script from the components repository over to the shared dev-infra package. The merge script has been orginally built for all Angular repositories, but we just kept it in the components repo temporarily to test it. Since everything went well on the components side, we now move the script over and integrate it into the dev-infra package. PR Close #37138
13 lines
435 B
TypeScript
13 lines
435 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
|
|
*/
|
|
|
|
/** Checks whether the specified value matches the given pattern. */
|
|
export function matchesPattern(value: string, pattern: RegExp|string): boolean {
|
|
return typeof pattern === 'string' ? value === pattern : pattern.test(value);
|
|
}
|