(target, prop, descriptor)
| 334 | return true; |
| 335 | }, |
| 336 | defineProperty(target, prop, descriptor) { |
| 337 | console.warn( |
| 338 | `[Security Alert] Attempt to define property '${String(prop)}' on read-only config blocked.`, |
| 339 | ); |
| 340 | return true; |
| 341 | }, |
| 342 | deleteProperty(target, prop) { |
| 343 | console.warn( |
| 344 | `[Security Alert] Attempt to delete property '${String(prop)}' on read-only config blocked.`, |
no test coverage detected