UNPKG

compromise

Version:
36 lines (34 loc) 1.73 kB
export default [ // ==== WeekDay ==== // sun the 5th { match: '[sun] the #Ordinal', tag: 'WeekDay', reason: 'sun-the-5th' }, //sun feb 2 { match: '[sun] #Date', group: 0, tag: 'WeekDay', reason: 'sun-feb' }, //1pm next sun { match: '#Date (on|this|next|last|during)? [sun]', group: 0, tag: 'WeekDay', reason: '1pm-sun' }, //this sat { match: `(in|by|before|during|on|until|after|of|within|all) [sat]`, group: 0, tag: 'WeekDay', reason: 'sat' }, { match: `(in|by|before|during|on|until|after|of|within|all) [wed]`, group: 0, tag: 'WeekDay', reason: 'wed' }, { match: `(in|by|before|during|on|until|after|of|within|all) [march]`, group: 0, tag: 'Month', reason: 'march' }, //sat november { match: '[sat] #Date', group: 0, tag: 'WeekDay', reason: 'sat-feb' }, // ==== Month ==== //all march { match: `#Preposition [(march|may)]`, group: 0, tag: 'Month', reason: 'in-month' }, //this march { match: `(this|next|last) (march|may) !#Infinitive?`, tag: '#Date #Month', reason: 'this-month' }, // march 5th { match: `(march|may) the? #Value`, tag: '#Month #Date #Date', reason: 'march-5th' }, // 5th of march { match: `#Value of? (march|may)`, tag: '#Date #Date #Month', reason: '5th-of-march' }, // march and feb { match: `[(march|may)] .? #Date`, group: 0, tag: 'Month', reason: 'march-and-feb' }, // feb to march { match: `#Date .? [(march|may)]`, group: 0, tag: 'Month', reason: 'feb-and-march' }, //quickly march { match: `#Adverb [(march|may)]`, group: 0, tag: 'Verb', reason: 'quickly-march' }, //march quickly { match: `[(march|may)] #Adverb`, group: 0, tag: 'Verb', reason: 'march-quickly' }, //12 am { match: `#Value (am|pm)`, tag: 'Time', reason: '2-am' }, ]