_LineWrapper.js 1.0 KB

12345678910111213141516171819202122232425
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
  4. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  5. // Generated by CoffeeScript 2.5.1
  6. var _LineWrapper;
  7. module.exports = _LineWrapper = /*#__PURE__*/function () {
  8. function _LineWrapper() {
  9. _classCallCheck(this, _LineWrapper);
  10. }
  11. _createClass(_LineWrapper, [{
  12. key: "render",
  13. value: function render(str, options) {
  14. return this._render(str, options);
  15. }
  16. }]);
  17. return _LineWrapper;
  18. }();