UNPKG

compromise

Version:
19 lines (16 loc) 317 B
'use strict'; const Text = require('../../index'); class Organizations extends Text { data() { return this.mapTerms((t) => { return { text: t.text }; }); } static find(r) { r = r.splitAfter('#Comma'); return r.match('#Organization+'); } } module.exports = Organizations;