9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
|
// @flow
|
||
|
|
||
|
/**
|
||
|
* Used to modify initialValue, which is expected to be a decimal value between
|
||
|
* 0 and 1, and converts it to a number representable by an input slider, which
|
||
|
* recognizes whole numbers.
|
||
|
*/
|
||
|
export const VOLUME_SLIDER_SCALE = 100;
|