mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
function getTextFromScore(score: number): string {
|
|
return score > 0 ? score + '%' : 'N/A';
|
|
}
|
|
|
|
module.exports = getTextFromScore;
|