(units)
| 15529 | // MOMENTS |
| 15530 | |
| 15531 | function stringGet (units) { |
| 15532 | units = normalizeUnits(units); |
| 15533 | if (isFunction(this[units])) { |
| 15534 | return this[units](); |
| 15535 | } |
| 15536 | return this; |
| 15537 | } |
| 15538 | |
| 15539 | |
| 15540 | function stringSet (units, value) { |
nothing calls this directly
no test coverage detected