* Removes debug/log getter from `object` property `prop`. * * @param {object} object * @param {string} prop * @public
(object, prop)
| 392 | */ |
| 393 | |
| 394 | function $dugr(object, prop) { |
| 395 | return removeAccessors(object, prop); |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * Adds debug setter from `object` property `prop`. |
nothing calls this directly
no test coverage detected