Home
last modified time | relevance | path

Searched refs:isBlurhashString (Results 1 – 10 of 10) sorted by relevance

/expo/packages/expo-image/build/utils/
H A DresolveSources.js3 export function isBlurhashString(str) { function
13 if (isBlurhashString(source)) {
H A DresolveSources.d.ts2 export declare function isBlurhashString(str: string): boolean; function
H A DresolveSources.js.map1isBlurhashString(str: string): boolean {\n return /^(blurhash:\\/)?[\\w#$%*+,\\-.:;=?@[\\]^_{}|~]…
/expo/packages/expo-image/build/utils/blurhash/
H A DuseBlurhash.js6 import { isBlurhashString } from '../resolveSources';
16 if (!blurhash || !blurhash.uri || !isBlurhashString(blurhash.uri))
H A DuseBlurhash.js.map1isBlurhashString } from '../resolveSources';\n\nconst DEFAULT_SIZE = {\n width: 32,\n height: 32…
/expo/packages/expo-image/src/utils/
H A DresolveSources.tsx5 export function isBlurhashString(str: string): boolean {
17 if (isBlurhashString(source)) {
/expo/packages/expo-image/src/utils/blurhash/
H A DuseBlurhash.tsx8 import { isBlurhashString } from '../resolveSources';
26 if (!blurhash || !blurhash.uri || !isBlurhashString(blurhash.uri)) return;
/expo/packages/expo-image/build/web/
H A DuseSourceSelection.js2 import { isBlurhashString, isThumbhashString } from '../utils/resolveSources';
40 … .filter((s) => s.uri && s.width != null && !isBlurhashString(s.uri) && !isThumbhashString(s.uri))
H A DuseSourceSelection.js.map1isBlurhashString, isThumbhashString } from '../utils/resolveSources';\n\nfunction findBestSourceFo…
/expo/packages/expo-image/src/web/
H A DuseSourceSelection.ts4 import { isBlurhashString, isThumbhashString } from '../utils/resolveSources';
65 (s) => s.uri && s.width != null && !isBlurhashString(s.uri) && !isThumbhashString(s.uri)