brollb/webgme-simple-nodes

View on GitHub
src/plugins/SimpleNodes/Constants.js

Summary

Maintainability
A
0 mins
Test Coverage
/*globals define*/
// These are constants used when creating the JSON representations of the
// WebGME nodes to represent pointers. These are used to avoid collisions
// with WebGME node attributes.
define({
    NEXT: '_next_',
    PREV: '_previous_',
    DEFAULT: '_default_',
    ARCH: '_arch_',
    NODE_PATH: '_nodePath_',
    CHILDREN: '_children_',
    BASE: '_base_'
});