Home
last modified time | relevance | path

Searched refs:removeLeadingSlash (Results 1 – 7 of 7) sorted by relevance

/expo/packages/expo-linking/build/
H A DcreateURL.js31 function removeLeadingSlash(url) { function
75 path = `/--/${removeLeadingSlash(path)}`;
134 path = removeLeadingSlash(path);
H A DcreateURL.js.map1removeLeadingSlash(url: string): string {\n return url.replace(/^\\//, '');\n}\n\nfunction remove…
/expo/packages/expo-linking/src/
H A DcreateURL.ts38 function removeLeadingSlash(url: string): string { function
90 path = `/--/${removeLeadingSlash(path)}`;
159 path = removeLeadingSlash(path);
/expo/packages/expo-auth-session/build/
H A DSessionUrlProvider.d.ts14 private static removeLeadingSlash;
H A DSessionUrlProvider.js12 path = [path, SessionUrlProvider.removeLeadingSlash(urlPath)].filter(Boolean).join('/');
101 static removeLeadingSlash(url) { method in SessionUrlProvider
H A DSessionUrlProvider.js.map1removeLeadingSlash(urlPath)].filter(Boolean).join('/');\n }\n\n return Linking.createURL(pat…
/expo/packages/expo-auth-session/src/
H A DSessionUrlProvider.ts17 path = [path, SessionUrlProvider.removeLeadingSlash(urlPath)].filter(Boolean).join('/');
125 private static removeLeadingSlash(url: string) { method in SessionUrlProvider