https://scrapbox.io/teamj/date-expressions_(v4)
const DateExp = require('@daiiz/date-expressions')
const dateExp = new DateExp('去年の8月', 'Asia/Tokyo')
const ranges = dateExp.resolve().dateRanges
// [
// [ 2019-07-31T15:00:00.000Z, 2019-08-31T14:59:59.999Z ]
// ]
const { handled, unhandled } = DateExp.analyzeExpression('夏/インターンシップ/午後', '/')
// handled: ['夏', '午後']
// unhandled: ['インターンシップ']
$ TZ=UTC DEBUG=* node examples.js
$ DEBUG=* TEXT="2001年/2月/午後" node examples.js
$ npm run test:mocha