Type Definitions
string
# dateString
A string representing a date in a simplified ISO 8601 format,
as recognised by the Date.parse()
method.
# 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.
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.
object
# playlistData
Playlist data parsed from /data/seasons.json
by importing it
as a CJS module and targeting an element of a playlists array.
object
# seasonData
Data parsed from /data/seasons.json
by importing it as a
CJS module and targeting one element of the array.