Searched refs:arrayize (Results 1 – 11 of 11) sorted by relevance
| /expo/packages/expo-modules-autolinking/src/ |
| H A D | ExpoModuleConfig.ts | 3 function arrayize<T>(value: T[] | T | undefined): T[] { function 51 return arrayize(this.rawConfig.ios?.podspecPath); 58 return arrayize(this.rawConfig.ios?.swiftModuleName); 82 return arrayize(this.rawConfig.android?.gradlePath ?? []); 89 return arrayize(this.rawConfig.android?.gradlePlugins ?? []);
|
| /expo/packages/expo-modules-autolinking/build/ |
| H A D | ExpoModuleConfig.js | 4 function arrayize(value) { function 48 return arrayize(this.rawConfig.ios?.podspecPath); 54 return arrayize(this.rawConfig.ios?.swiftModuleName); 74 return arrayize(this.rawConfig.android?.gradlePath ?? []); 80 return arrayize(this.rawConfig.android?.gradlePlugins ?? []);
|
| H A D | ExpoModuleConfig.js.map | 1 …arrayize<T>(value: T[] | T | undefined): T[] {\n if (Array.isArray(value)) {\n return value;\n…
|
| /expo/tools/src/prebuilds/ |
| H A D | XcodeGen.ts | 7 import { arrayize, spawnAsync } from '../Utils'; 83 includes: arrayize(podspec.source_files), 90 ...arrayize(podspec.exclude_files), 96 ...arrayize(podspec.frameworks).map((framework) => ({ 132 VALIDATE_WORKSPACE_SKIPPED_SDK_FRAMEWORKS: arrayize(podspec.frameworks).join(' '),
|
| /expo/packages/expo-media-library/build/ |
| H A D | MediaLibrary.js | 6 function arrayize(item) { function 194 const assetIds = arrayize(assets).map(getId); 219 const assetIds = arrayize(assets).map(getId); 236 const assetIds = arrayize(assets).map(getId); 336 const albumIds = arrayize(albums).map(getId); 358 sortBy: arrayize(sortBy), 359 mediaType: arrayize(mediaType || [MediaType.photo]),
|
| H A D | MediaLibrary.js.map | 1 …arrayize(item: any): any[] {\n if (Array.isArray(item)) {\n return item;\n }\n return item ?…
|
| /expo/packages/expo-media-library/src/ |
| H A D | MediaLibrary.ts | 324 function arrayize(item: any): any[] { function 539 const assetIds = arrayize(assets).map(getId); 572 const assetIds = arrayize(assets).map(getId); 592 const assetIds = arrayize(assets).map(getId); 718 const albumIds = arrayize(albums).map(getId); 744 sortBy: arrayize(sortBy), 745 mediaType: arrayize(mediaType || [MediaType.photo]),
|
| /expo/tools/src/vendoring/ |
| H A D | IosVendoring.ts | 10 import { arrayize, searchFilesAsync } from '../Utils'; 92 ? arrayize(podspec.default_subspecs)
|
| /expo/tools/src/versioning/ios/ |
| H A D | versionExpoModules.ts | 11 import { arrayize, searchFilesAsync } from '../../Utils'; 160 const result = arrayize(files).map((item) => {
|
| /expo/tools/src/ |
| H A D | Transforms.ts | 15 import { arrayize } from './Utils'; 70 !paths || arrayize(paths).some((pattern) => minimatch(filePath, pattern, { matchBase: true }))
|
| H A D | Utils.ts | 124 arrayize(patterns).map((pattern) => 138 export function arrayize<T>(value: T | T[]): T[] { function
|