mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
lint - controllers - whitepace fix
This commit is contained in:
parent
0fa9014986
commit
0db776c3cc
@ -1,4 +1,4 @@
|
|||||||
const ObservableStore = require('obs-store')
|
const ObservableStore = require('obs-store')
|
||||||
const extend = require('xtend')
|
const extend = require('xtend')
|
||||||
const log = require('loglevel')
|
const log = require('loglevel')
|
||||||
|
|
||||||
@ -16,9 +16,9 @@ class CurrencyController {
|
|||||||
* currentCurrency, conversionRate and conversionDate properties
|
* currentCurrency, conversionRate and conversionDate properties
|
||||||
* @property {string} currentCurrency A 2-4 character shorthand that describes a specific currency, currently
|
* @property {string} currentCurrency A 2-4 character shorthand that describes a specific currency, currently
|
||||||
* selected by the user
|
* selected by the user
|
||||||
* @property {number} conversionRate The conversion rate from ETH to the selected currency.
|
* @property {number} conversionRate The conversion rate from ETH to the selected currency.
|
||||||
* @property {string} conversionDate The date at which the conversion rate was set. Expressed in in milliseconds
|
* @property {string} conversionDate The date at which the conversion rate was set. Expressed in in milliseconds
|
||||||
* since midnight of January 1, 1970
|
* since midnight of January 1, 1970
|
||||||
* @property {number} conversionInterval The id of the interval created by the scheduleConversionInterval method.
|
* @property {number} conversionInterval The id of the interval created by the scheduleConversionInterval method.
|
||||||
* Used to clear an existing interval on subsequent calls of that method.
|
* Used to clear an existing interval on subsequent calls of that method.
|
||||||
*
|
*
|
||||||
@ -59,7 +59,7 @@ class CurrencyController {
|
|||||||
/**
|
/**
|
||||||
* A getter for the conversionRate property
|
* A getter for the conversionRate property
|
||||||
*
|
*
|
||||||
* @returns {string} The conversion rate from ETH to the selected currency.
|
* @returns {string} The conversion rate from ETH to the selected currency.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
getConversionRate () {
|
getConversionRate () {
|
||||||
@ -80,7 +80,7 @@ class CurrencyController {
|
|||||||
* A getter for the conversionDate property
|
* A getter for the conversionDate property
|
||||||
*
|
*
|
||||||
* @returns {string} The date at which the conversion rate was set. Expressed in milliseconds since midnight of
|
* @returns {string} The date at which the conversion rate was set. Expressed in milliseconds since midnight of
|
||||||
* January 1, 1970
|
* January 1, 1970
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
getConversionDate () {
|
getConversionDate () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user