(withSuffix)
| 4641 | } |
| 4642 | |
| 4643 | function humanize (withSuffix) { |
| 4644 | var locale = this.localeData(); |
| 4645 | var output = duration_humanize__relativeTime(this, !withSuffix, locale); |
| 4646 | |
| 4647 | if (withSuffix) { |
| 4648 | output = locale.pastFuture(+this, output); |
| 4649 | } |
| 4650 | |
| 4651 | return locale.postformat(output); |
| 4652 | } |
| 4653 | |
| 4654 | var iso_string__abs = Math.abs; |
| 4655 |
nothing calls this directly
no test coverage detected