More merge oversights...
This commit is contained in:
@@ -675,5 +675,5 @@ export function getAcceptControllingResponse(responses) {
|
|||||||
return suitable2xxResponse || suitableDefaultResponse
|
return suitable2xxResponse || suitableDefaultResponse
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createDeepLinkPath = (str) => str ? str.replace(/\s/g, "_") : ""
|
export const createDeepLinkPath = (str) => typeof str == "string" || str instanceof String ? str.trim().replace(/\s/g, "_") : ""
|
||||||
export const escapeDeepLinkPath = (str) => cssEscape( createDeepLinkPath(str) )
|
export const escapeDeepLinkPath = (str) => cssEscape( createDeepLinkPath(str) )
|
||||||
|
|||||||
Reference in New Issue
Block a user