(d)
| 460 | } |
| 461 | |
| 462 | const unparsePerson = (d) => |
| 463 | `${d.name}${d.email ? ` <${d.email}>` : ''}${d.url ? ` (${d.url})` : ''}` |
| 464 | |
| 465 | function getCompletionFields (d, f = [], pref = []) { |
| 466 | Object.entries(d).forEach(([k, v]) => { |
no outgoing calls
no test coverage detected