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

src/renderers/object.js   A

Size

Lines of Code 14

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
nc 1
dl 0
loc 14
rs 10
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A object.js ➔ ??? 0 5 1
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