parser-combinator
Version:
Parser combinators
22 lines (17 loc) • 506 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
/*
* Parsec
* https://github.com/d-plaindoux/parsec
*
* Copyright (c) 2016 Didier Plaindoux
* Licensed under the LGPL2 license.
*/
var Unit = function Unit() {
_classCallCheck(this, Unit);
};
exports.default = new Unit();
//# sourceMappingURL=unit.js.map