UNPKG

@daysnap/horn-jssdk

Version:

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

14 lines (13 loc) 358 B
import { call } from '../../core'; /** * 将数据存储在本地缓存中指定的 key 中。会覆盖掉原来该 key 对应的内容。 */ export const setStorage = (options) => { const { data } = options; return call({ ...options, service: 'storage', action: 'setStorage', data: JSON.stringify(data), }); };