(depth, opts)
| 336 | } |
| 337 | |
| 338 | [customInspectSymbol](depth, opts) { |
| 339 | const type = StringPrototypeToUpperCase(this.type[0]) + |
| 340 | StringPrototypeSlice(this.type, 1); |
| 341 | const name = this.name ? `<${this.name}>` : ''; |
| 342 | const prefix = `${type}${name} `; |
| 343 | return SideEffectFreeRegExpPrototypeSymbolReplace(/^Map /, |
| 344 | utilInspect(this.properties, opts), |
| 345 | prefix); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | function copyOwnProperties(target, source) { |
nothing calls this directly
no test coverage detected