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

17 lines (14 loc) 297 B
export * from './schedule' export class DateRange { constructor( readonly name: string, readonly from: Date, readonly to: Date ) {} contains(date: Date): boolean { return ( date.getTime() >= this.from.getTime() && date.getTime() < this.to.getTime() ) } }