UNPKG

@daysnap/horn-jssdk

Version:

原生容器面向 H5 开发者提供的基于容器应用内的网页开发工具包

16 lines (15 loc) 336 B
import { call } from '../../core'; /** * 从本地缓存中异步获取指定 key 的内容。 */ export const getStorage = (options) => call({ ...options, service: 'storage', action: 'getStorage', }).then((res) => { const { data } = res; if (data) { res.data = JSON.parse(data); } return res; });