UNPKG

gg-editor

Version:

A visual graph editor based on G6 and React

16 lines (13 loc) 247 B
/* global GG_EDITOR_VERSION */ const global = { trackable: process.env.NODE_ENV === 'production', version: GG_EDITOR_VERSION, }; export default { get(key) { return global[key]; }, set(key, value) { global[key] = value; }, };