(ax, v)
| 16 | } |
| 17 | |
| 18 | function r2p(ax, v) { |
| 19 | switch(ax.type) { |
| 20 | case 'log': |
| 21 | return ax.d2p(v); |
| 22 | case 'date': |
| 23 | return ax.r2p(v, 0, ax.calendar); |
| 24 | default: |
| 25 | return ax.r2p(v); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | function axValue(ax) { |
| 30 | var index = (ax._id.charAt(0) === 'y') ? 1 : 0; |
no outgoing calls
no test coverage detected