/**
* Represents the number of kilobytes in one megabyte.
*
* @example
* console.log(MEGABYTE_IN_KILOBYTES * 5); // 5120 -> (5 MB)
*
* @type {number}
* @constant
* @default
*/
export const MEGABYTE_IN_KILOBYTES = 1024;
/**
* Represents the number of kilobytes in one megabyte.
*
* @example
* console.log(MEGABYTE_IN_KILOBYTES * 5); // 5120 -> (5 MB)
*
* @type {number}
* @constant
* @default
*/
export const MEGABYTE_IN_KILOBYTES = 1024;