File size: 284 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import 'calypso/state/currency-code/init';
/**
* Returns the currency code for the current user.
* @param {Object} state Global state tree
* @returns {?string} Current currency code
*/
export function getCurrentUserCurrencyCode( state ) {
return state.currencyCode;
}
|