Home
last modified time | relevance | path

Searched refs:arrayize (Results 1 – 11 of 11) sorted by relevance

/expo/packages/expo-modules-autolinking/src/
H A DExpoModuleConfig.ts3 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 DExpoModuleConfig.js4 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 DExpoModuleConfig.js.map1arrayize<T>(value: T[] | T | undefined): T[] {\n if (Array.isArray(value)) {\n return value;\n…
/expo/tools/src/prebuilds/
H A DXcodeGen.ts7 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 DMediaLibrary.js6 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 DMediaLibrary.js.map1arrayize(item: any): any[] {\n if (Array.isArray(item)) {\n return item;\n }\n return item ?…
/expo/packages/expo-media-library/src/
H A DMediaLibrary.ts324 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 DIosVendoring.ts10 import { arrayize, searchFilesAsync } from '../Utils';
92 ? arrayize(podspec.default_subspecs)
/expo/tools/src/versioning/ios/
H A DversionExpoModules.ts11 import { arrayize, searchFilesAsync } from '../../Utils';
160 const result = arrayize(files).map((item) => {
/expo/tools/src/
H A DTransforms.ts15 import { arrayize } from './Utils';
70 !paths || arrayize(paths).some((pattern) => minimatch(filePath, pattern, { matchBase: true }))
H A DUtils.ts124 arrayize(patterns).map((pattern) =>
138 export function arrayize<T>(value: T | T[]): T[] { function