(x)
| 113 | var ZERO_POINT = { row: 0, column: 0 }; |
| 114 | var INTERNAL = /* @__PURE__ */ Symbol("INTERNAL"); |
| 115 | function assertInternal(x) { |
| 116 | if (x !== INTERNAL) throw new Error("Illegal constructor"); |
| 117 | } |
| 118 | __name(assertInternal, "assertInternal"); |
| 119 | function isPoint(point) { |
| 120 | return !!point && typeof point.row === "number" && typeof point.column === "number"; |
no outgoing calls
no test coverage detected