Home
last modified time | relevance | path

Searched refs:execAll (Results 1 – 4 of 4) sorted by relevance

/expo/tools/src/versioning/ios/
H A DversionExpoModulesProvider.ts6 import { execAll } from '../../Utils';
72 dependencies: execAll(/\bimport\s+(\w+?)\b/g, content, 1).reduce((acc, match) => {
/expo/tools/src/
H A DGitHubActions.ts7 import { execAll, filterAsync } from './Utils';
114 const matches = execAll(
H A DChangelogs.ts6 import { execAll } from './Utils';
115 const pullRequests = execAll(
120 const authors = execAll(/\[@\w+\]\(https?:\/\/github\.com\/([^/)]+)\)/g, text, 1);
H A DUtils.ts105 export function execAll(rgx: RegExp, str: string, index: number = 0): string[] { function