dag-editor/index.js

16 lines
214 B
JavaScript
Raw Normal View History

2019-09-07 12:07:48 -04:00
import {Table} from './table.ts';
var rows = [
["a","1"],
["b","2"],
["a","3"],
["b","1"],
["a","2"],
["b","3"],
]
var t;
t = new Table("Root", rows);
t.PivotTree([0, 1]);
console.log(t);