This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filesize(500); // "3.91Kb" | |
filesize(500, true); // "3.9k" | |
filesize(1500); // "1.46KB" | |
filesize("1500000000"); // "1.40GB" | |
filesize("1500000000", 0); // "1GB" | |
filesize(1212312421412412); // "1.08PB" | |
filesize(1212312421412412, true); // "1.1P" - shorthand output, similar to *nix "ls -lh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Data attributes facade | |
* | |
* @type {Object} | |
*/ | |
var data = { | |
/** | |
* Getter | |
* | |
* @param {Object} obj Element to query |
NewerOlder