jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
22 lines (21 loc) • 803 B
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module helpers/utils
*/
/**
* Converts from human readable file size (kb,mb,gb,tb) to bytes
* @param human - readable file size. Example 1gb or 11.2mb
*/
export const humanSizeToBytes = (human) => {
if (/^[0-9.]+$/.test(human.toString())) {
return parseFloat(human);
}
const format = human.substr(-2, 2).toUpperCase(), formats = ['KB', 'MB', 'GB', 'TB'], number = parseFloat(human.substr(0, human.length - 2));
return formats.indexOf(format) !== -1
? number * Math.pow(1024, formats.indexOf(format) + 1)
: parseInt(human, 10);
};