object.js 242 B

1234567891011121314
  1. class ObjectRenderer {
  2. constructor(object, encodings, options) {
  3. this.object = object;
  4. this.encodings = encodings;
  5. this.options = options;
  6. }
  7. render() {
  8. this.object.encodings = this.encodings;
  9. }
  10. }
  11. export default ObjectRenderer;