(this: BigDecimal)
| 67 | return `BigDecimal(${format(this)})` |
| 68 | }, |
| 69 | toJSON(this: BigDecimal) { |
| 70 | return { |
| 71 | _id: "BigDecimal", |
| 72 | value: String(this.value), |
| 73 | scale: this.scale |
| 74 | } |
| 75 | }, |
| 76 | [NodeInspectSymbol](this: BigDecimal) { |
| 77 | return this.toJSON() |
| 78 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…