Completed
Push — master ( b6b6af...546c59 )
by Johan
01:04
created

object.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
c 2
b 0
f 0
nc 1
nop 3
dl 0
loc 5
rs 9.4285
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