1.0.6 • Published 4 years ago

@blued-core/cache v1.0.6

Weekly downloads
21
License
ISC
Repository
-
Last release
4 years ago

一个提供给client使用的缓存组件。
实现自cache-intl

install

npm i @blued-core/cache

usage

import Cache from '@blued-core/cache'

const cache = new Cache()

cache.set('text', 'Hello World')

console.log(cache.has('text'))
console.log(cache.get('text'))