UNPKG

react-tag-box

Version:

A tagging component in React. Select, create, and delete tags.

17 lines (12 loc) 234 B
export default function cache() { let map = {} const get = query => map[query] const add = (input, tags) => { map[input] = tags return tags } const clear = () => { map = {} } return { get, add, clear } }