UNPKG

magic-helper

Version:

this is magic helper

11 lines (9 loc) 281 B
import { PARAMS_LOCAL_KEY } from '../constant' // 获取完整的启动参数 export const getParams = () => { return uni.getStorageSync(PARAMS_LOCAL_KEY) } // 获取指定key的启动参数 export const getParamsByKey = (key: string) => { return getParams()[key] }