The object that was converted
Helper function to resolve promise after ms.
Number of milliseconds to delay
A promise that resovles after ms milliseconds
Helper function to provide promises from getters/setters. Used to lazily initialize values when the getter returns undefined.
A function to return the value
A function that sets a value, that can be later retrieved from the getter
A promise that returns the value that was set from the updater parameter
Helper function to parse time strings (Mainly on the profile pages) into seconds.
For example: 2m ago
=> 120
The number
Generated using TypeDoc
Helper function to convert an array, to key/value pairs. ie.
['foo', 'bar', 'meow', 'rawr']
=>{foo: 'bar', meow: 'rawr'}