All files / src/node-groups NodesGroup.js

100% Statements 5/5
100% Branches 1/1
100% Functions 1/1
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12    3x 3x 3x     3x     1x  
"use strict";
class NodesGroup {
    constructor(options) {
        this.nodes = new Map();
        this.options = options;
    }
    getNodes() {
        return this.nodes;
    }
}
exports.NodesGroup = NodesGroup;
//# sourceMappingURL=NodesGroup.js.map