UNPKG

@ivujs/i-utils

Version:

前端模块化 JavaScript 工具库

10 lines (8 loc) 209 B
/** * 浏览器是否支持 Storage * @returns {Boolean} 返回true和false */ function isSupportStorage() { return !!(window.localStorage && window.sessionStorage); } export { isSupportStorage };