UNPKG

@ivujs/i-utils

Version:

前端模块化 JavaScript 工具库

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