Eliminate if-statement (#3561)
Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
This commit is contained in:
parent
e87b9cc019
commit
a2db4db963
|
@ -1,6 +1,3 @@
|
|||
import Vue from 'vue';
|
||||
|
||||
Vue.filter('number', (n) => {
|
||||
if (n == null) return 'N/A';
|
||||
return n.toLocaleString();
|
||||
});
|
||||
Vue.filter('number', n => n == null ? 'N/A' : n.toLocaleString());
|
||||
|
|
Loading…
Reference in New Issue