UNPKG

wix-style-react

Version:
35 lines (30 loc) 1.37 kB
var _this = this; function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; } export var headingDriverFactory = function headingDriverFactory(component) { return { /** returns the component element */ element: function element() { return component; }, /** returns the component's text */ getText: function () { var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() { return regeneratorRuntime.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: return _context.abrupt("return", component.getText()); case 1: case "end": return _context.stop(); } } }, _callee, _this); })); return function getText() { return _ref.apply(this, arguments); }; }() }; }; export default headingDriverFactory;