(key, mom, now)
| 431 | }; |
| 432 | |
| 433 | function calendar(key, mom, now) { |
| 434 | var output = this._calendar[key] || this._calendar['sameElse']; |
| 435 | return isFunction(output) ? output.call(mom, now) : output; |
| 436 | } |
| 437 | |
| 438 | function zeroFill(number, targetLength, forceSign) { |
| 439 | var absNumber = '' + Math.abs(number), |
nothing calls this directly
no test coverage detected