This commit is contained in:
こぴなたみぽ
2018-02-20 20:33:11 +09:00
parent f8bb47a60b
commit 19981f78fc
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import Vue from 'vue';
Vue.filter('bytes', (v, digits = 0) => {
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (v == 0) return '0Byte';
const i = Math.floor(Math.log(v) / Math.log(1024));
return (v / Math.pow(1024, i)).toFixed(digits).replace(/\.0+$/, '') + sizes[i];
});

View File

@@ -0,0 +1 @@
require('./bytes');