UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

18 lines (14 loc) 447 B
"use strict"; var parser = require("./generated-parser.js"); exports.name = function (potentialName) { return mapResult(parser.startWith("Name").exec(potentialName)); }; exports.qname = function (potentialQname) { return mapResult(parser.startWith("QName").exec(potentialQname)); }; function mapResult(result) { return { success: result.success, error: result.error && parser.getTrace(result.error.message) }; }