UNPKG

@botonic/plugin-contentful

Version:

Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet

13 lines 335 B
export * from './schedule'; export class DateRange { constructor(name, from, to) { this.name = name; this.from = from; this.to = to; } contains(date) { return (date.getTime() >= this.from.getTime() && date.getTime() < this.to.getTime()); } } //# sourceMappingURL=index.js.map