Code coverage report for src/globals.js

Statements: 100% (18 / 18)      Branches: 50% (1 / 2)      Functions: 100% (0 / 0)      Lines: 100% (18 / 18)      Ignored: none     

All files » src/ » globals.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25      1   1 1 1 1   1 1 1 1 1 1 1 1 1   1 1 1 1  
'use strict';
 
// declare global constant
var g = global || window;
 
g.AGGREGATE = 'aggregate';
g.RAW = 'raw';
g.STACKED = 'stacked';
g.INDEX = 'index';
 
g.X = 'x';
g.Y = 'y';
g.ROW = 'row';
g.COL = 'col';
g.SIZE = 'size';
g.SHAPE = 'shape';
g.COLOR = 'color';
g.TEXT = 'text';
g.DETAIL = 'detail';
 
g.N = 'N';
g.O = 'O';
g.Q = 'Q';
g.T = 'T';