You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
363 B
18 lines
363 B
export {
|
|
upx2px
|
|
}
|
|
from 'uni-core/service/api/base/upx2px'
|
|
|
|
export * from 'uni-platform/view/api'
|
|
|
|
export {
|
|
getSystemInfoSync
|
|
}
|
|
from '../../src/platforms/h5/service/api/device/get-system-info'
|
|
|
|
export function canIUse (schema) {
|
|
if (schema === 'css.var') {
|
|
return window.CSS && window.CSS.supports && window.CSS.supports('--a:0')
|
|
}
|
|
return true
|
|
}
|
|
|