()
| 7 | const install = (global) => { |
| 8 | Reflect.defineProperty(global.Array.prototype, "last", { |
| 9 | get() { |
| 10 | return this[this.length - 1]; |
| 11 | }, |
| 12 | set(value) { |
| 13 | Reflect.defineProperty(this, "last", { |
| 14 | value, |
nothing calls this directly
no outgoing calls
no test coverage detected