Lines of Code | 14 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | class ObjectRenderer { |
||
2 | constructor(object, encodings, options) { |
||
3 | this.object = object; |
||
4 | this.encodings = encodings; |
||
5 | this.options = options; |
||
6 | } |
||
7 | |||
8 | render() { |
||
9 | this.object.encodings = this.encodings; |
||
10 | } |
||
11 | } |
||
12 | |||
13 | |||
14 | export default ObjectRenderer; |
||
15 |