(inputString)
| 18077 | } |
| 18078 | |
| 18079 | function format (inputString) { |
| 18080 | if (!inputString) { |
| 18081 | inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; |
| 18082 | } |
| 18083 | var output = formatMoment(this, inputString); |
| 18084 | return this.localeData().postformat(output); |
| 18085 | } |
| 18086 | |
| 18087 | function from (time, withoutSuffix) { |
| 18088 | if (this.isValid() && |
no test coverage detected