UNPKG

@ivujs/i-utils

Version:

前端模块化 JavaScript 工具库

12 lines (9 loc) 240 B
'use strict'; /** * 浏览器是否支持 Storage * @returns {Boolean} 返回true和false */ function isSupportStorage() { return !!(window.localStorage && window.sessionStorage); } exports.isSupportStorage = isSupportStorage;