(this: Duration)
| 161 | return isDuration(that) && equals(this, that) |
| 162 | }, |
| 163 | toString(this: Duration) { |
| 164 | return `Duration(${format(this)})` |
| 165 | }, |
| 166 | toJSON(this: Duration) { |
| 167 | switch (this.value._tag) { |
| 168 | case "Millis": |
nothing calls this directly
no test coverage detected
searching dependent graphs…