UNPKG
io3fix
Version:
latest (1.1.8-b)
1.2.1
1.1.8
1.1.8-b
toolkit for interior apps
3d.io
archilogic-com/3dio-js
io3fix
/
src
/
storage
/
get-no-cdn-url-from-id.js
9 lines
(6 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
configs
from
'../core/configs.js'
import
getUrlFromStorageId
from
'./get-url-from-id.js'
// main
export
default
function
getNoCdnUrlFromStorageId
(
storageId
) {
return
getUrlFromStorageId
(storageId, {
cdn
:
false
}) }