Add VTX hyperlink support for URLs

This commit is contained in:
Bryan Ashby 2017-09-21 21:23:30 -06:00
parent 7837a2a7bd
commit b0260049ba
5 changed files with 26 additions and 5 deletions

View file

@ -271,8 +271,10 @@ const transformers = {
styleMixed : (s) => stylizeString(s, 'mixed'),
styleL33t : (s) => stylizeString(s, 'l33t'),
// :TODO:
// toMegs(), toKilobytes(), ...
// toList(), toCommaList(),
sizeWithAbbr : (n) => formatByteSize(n, true, 2),
sizeWithoutAbbr : (n) => formatByteSize(n, false, 2),
sizeAbbr : (n) => formatByteSizeAbbr(n),