Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit edd570d

Browse files
committed
Don’t export getLoadingMsg
1 parent 9fa795f commit edd570d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/computed/loader-msg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const LOADING_PERCENT_END = 0.95;
2020
* @param {number} percent The percentage the network is synced.
2121
* @return {string} The message corresponding to the percent.
2222
*/
23-
export const getLoadingMsg = percent => {
23+
const getLoadingMsg = percent => {
2424
percent = Number(percent);
2525
if (isNaN(percent)) {
2626
percent = 0;

0 commit comments

Comments
 (0)