(a, b)
| 357 | } |
| 358 | |
| 359 | function sortUsageExamples(a, b) { |
| 360 | if (a.order < b.order) return -1 |
| 361 | if (a.order > b.order) return 1 |
| 362 | return 0 |
| 363 | } |
| 364 | |
| 365 | async function getUsageExamples(d) { |
| 366 | const { data, pkg, platform, dir } = d |
nothing calls this directly
no outgoing calls
no test coverage detected