mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
6 lines
207 B
JavaScript
6 lines
207 B
JavaScript
/**
|
|
* MAX_DECIMAL represensts the maximum number of decimal values allow for the input,
|
|
* the limitation in javascript <input/> retstricts us to keep it as 15 and below.
|
|
*/
|
|
export const MAX_DECIMAL = 15;
|