'use strict';
const Noun = require('../noun.js');
const parse_date = require('./parse_date.js');
class _Date extends Noun {
constructor(str, tag) {
super(str);
this.tag = tag;
this.pos['Date'] = true;
this.data = parse_date(this.text) || {};
}