Global

Type Definitions

string

# dateString

A string representing a date in a simplified ISO 8601 format, as recognised by the Date.parse() method.

See:

View Source docs/typedefs.js, line 2

# null

The JavaScript null primitive type, used to denote the deliberate absence of a value. It is used throughout the module because is useful for conditional tests on properties – it is falsy, unlike an empty Array, and is distinguishable from the undefined primitive type, which is useful for testing purposes.

See:

View Source docs/typedefs.js, line 29

dateString | Date

# parseableDate

A value that is in a format that the module is able to convert into a date. This includes dateStrings and instances of the date object.

View Source docs/typedefs.js, line 22

object

# playlistData

Playlist data parsed from /data/seasons.json by importing it as a CJS module and targeting an element of a playlists array.

View Source docs/typedefs.js, line 16

object

# seasonData

Data parsed from /data/seasons.json by importing it as a CJS module and targeting one element of the array.

View Source docs/typedefs.js, line 10