wbyoung/jsi-blowtorch

View on GitHub
lib/renderers/index.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

function Renderer(content, context) {
  this._content = content;
  this._context = context;
}

/**
 */
Renderer.prototype.render = function() {
  throw new Error('use concrete subclass of Renderer');
};

module.exports = Renderer;