(this: any)
| 94 | |
| 95 | it('should return `false` if the object has a modified prototype', () => { |
| 96 | function Graph(this: any) { |
| 97 | this.vertices = [] |
| 98 | this.edges = [] |
| 99 | } |
| 100 | |
| 101 | Graph.prototype.addVertex = function (v: any) { |
| 102 | this.vertices.push(v) |
nothing calls this directly
no outgoing calls
no test coverage detected