UNPKG

436 BPlain TextView Raw
1/**
2 * @description 历史记录 - 数据缓存的模式
3 * @author fangzhicong
4 */
5
6import { UA } from '../utils/util'
7
8/**
9 * 是否为兼容模式。返回 true 表示当前使用兼容(内容备份)模式,否则使用标准(差异备份)模式
10 */
11function compatibleMode() {
12 if (UA.isIE() || UA.isOldEdge) {
13 return true
14 }
15 return false
16}
17
18export default {
19 compatibleMode,
20 historyMaxSize: 30,
21}