UNPKG
gaf-mobile
Version:
latest (1.0.0)
1.0.0
GAF mobile Web site
gaf-mobile
/
app
/
scripts
/
mocks
/
currency.mock.js
13 lines
(12 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
/* exported CurrencyMock */
function
CurrencyMock
(
) {
return
{
code
:
'USD'
,
name
:
'US Dollar'
,
country
:
'US'
,
sign
:
'$'
,
exchange_rate
:
1
,
id
:
1
}; }