(name)
| 517 | * @returns {boolean} true when the segment is unsafe to write through |
| 518 | */ |
| 519 | const isUnsafeKey = (name) => |
| 520 | name === "__proto__" || name === "constructor" || name === "prototype"; |
| 521 | |
| 522 | /** |
| 523 | * Gets object and property. |
no outgoing calls
no test coverage detected