speech-rule-engine
Version:
A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.
38 lines • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Span = void 0;
class Span {
constructor(speech, attributes) {
this.speech = speech;
this.attributes = attributes;
}
static empty() {
return new Span('', {});
}
static stringEmpty(str) {
return new Span(str, {});
}
static stringAttr(str, attr) {
return new Span(str, attr);
}
static singleton(str, def = {}) {
return [Span.stringAttr(str, def)];
}
static node(str, node, def = {}) {
const attr = Span.getAttributes(node);
Object.assign(attr, def);
return new Span(str, attr);
}
static getAttributes(node) {
const attrs = {};
for (const attr of Span.attributeList) {
if (node.hasAttribute(attr)) {
attrs[attr] = node.getAttribute(attr);
}
}
return attrs;
}
}
exports.Span = Span;
Span.attributeList = ['id', 'extid'];
//# sourceMappingURL=span.js.map