UNPKG

183 BJSXView Raw
1export default function getPhrase(phrase, args) {
2 if (typeof phrase === 'string') return phrase;
3
4 if (typeof phrase === 'function') {
5 return phrase(args);
6 }
7
8 return '';
9}