(name)
| 353 | |
| 354 | const removeList = ['NAMESPACE', 'name', 'config', 'loaded', 'initialize'] |
| 355 | function removeMethod(name) { |
| 356 | return !removeList.includes(name) |
| 357 | } |
| 358 | |
| 359 | function sortUsageExamples(a, b) { |
| 360 | if (a.order < b.order) return -1 |
nothing calls this directly
no outgoing calls
no test coverage detected