(data, term)
| 18 | const port = portsMap.target; |
| 19 | |
| 20 | const sortByTerm = (data, term) => |
| 21 | data.toSorted((a, b) => (a.indexOf(term) < b.indexOf(term) ? -1 : 1)); |
| 22 | |
| 23 | // `"universal"` and combined `["web", "node"]` targets emit ESM and are only |
| 24 | // available since webpack `5.108.0`, but `peerDependencies` allows `^5.101.0`. |
no outgoing calls
no test coverage detected
searching dependent graphs…