Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit 99809c4

Browse files
committed
fix spacing that vim broke 😳
1 parent 4dec764 commit 99809c4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* number formatting helper functions
3-
* can be used in vue filters
4-
*/
2+
* number formatting helper functions
3+
* can be used in vue filters
4+
*/
55
import numeral from 'numeral';
66

77
/**
8-
* apply a numeral.js formatting string to an input value
9-
* @param {Number} val input value to be changed
10-
* @param {String} [format='0,0'] numeral.js format string
11-
* @return {String} formatted output string
12-
*/
8+
* apply a numeral.js formatting string to an input value
9+
* @param {Number} val input value to be changed
10+
* @param {String} [format='0,0'] numeral.js format string
11+
* @return {String} formatted output string
12+
*/
1313
export default (val, format = '0,0') => numeral(val).format(format);

0 commit comments

Comments
 (0)