UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering

11 lines 236 B
const cache = {}; export function get(type) { return cache[type] || {}; } export function register(type, hook) { cache[type] = hook; } export function unregister(type) { delete cache[type]; } //# sourceMappingURL=hook.js.map