(units)
| 739 | // MOMENTS |
| 740 | |
| 741 | function stringGet(units) { |
| 742 | units = normalizeUnits(units); |
| 743 | if (isFunction(this[units])) { |
| 744 | return this[units](); |
| 745 | } |
| 746 | return this; |
| 747 | } |
| 748 | |
| 749 | function stringSet(units, value) { |
| 750 | if (typeof units === 'object') { |
nothing calls this directly
no test coverage detected