diff options
Diffstat (limited to 'node_modules/webpack/lib/SizeFormatHelpers.js')
| -rw-r--r-- | node_modules/webpack/lib/SizeFormatHelpers.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/SizeFormatHelpers.js b/node_modules/webpack/lib/SizeFormatHelpers.js new file mode 100644 index 00000000..c4677f60 --- /dev/null +++ b/node_modules/webpack/lib/SizeFormatHelpers.js @@ -0,0 +1,24 @@ +/* + MIT License http://www.opensource.org/licenses/mit-license.php + Author Sean Larkin @thelarkinn +*/ +"use strict"; + +const SizeFormatHelpers = exports; + +SizeFormatHelpers.formatSize = size => { + if (typeof size !== "number" || Number.isNaN(size) === true) { + return "unknown size"; + } + + if (size <= 0) { + return "0 bytes"; + } + + const abbreviations = ["bytes", "KiB", "MiB", "GiB"]; + const index = Math.floor(Math.log(size) / Math.log(1024)); + + return `${+(size / Math.pow(1024, index)).toPrecision(3)} ${ + abbreviations[index] + }`; +}; |
