(leftFile, rightFile)
| 24 | } |
| 25 | |
| 26 | function compareFiles(leftFile, rightFile) { |
| 27 | var l = prettify(path.basename(path.dirname(leftFile))); |
| 28 | var r = prettify(path.basename(path.dirname(rightFile))); |
| 29 | return l.localeCompare(r, "en-US"); |
| 30 | } |
| 31 | |
| 32 | // Sort the examples based on the example-order defined in metadata.md. The missing example will be sort aphabetically at the end |
| 33 | // Example: |
nothing calls this directly
no test coverage detected