UNPKG

compromise

Version:
18 lines (15 loc) 297 B
'use strict'; const Text = require('../index'); class Statements extends Text { data() { return this.mapTerms((t) => { return {}; }); } static find(r) { return r.filter((ts) => { return ts.last().endPunctuation() !== '?'; }); } } module.exports = Statements;