UNPKG
@~lisfan/storage
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.10
1.0.0-rc.9
1.0.0-rc.8
1.0.0-rc.7
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.2
离线存储器
github.com/lisfan/storage
lisfan/storage
@~lisfan/storage
/
src
/
enums
/
storage-drivers.js
11 lines
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * storage 驱动器常量枚举 * *
@enum
{
string
} */
export
default
{
SESSIONSTORAGE
:
Symbol
(
'SESSIONSTORAGE'
),
LOCALSTORAGE
:
Symbol
(
'LOCALSTORAGE'
),
INDEXEDDB
:
Symbol
(
'INDEXEDDB'
),
WEBSQL
:
Symbol
(
'WEBSQL'
), }