Created
July 8, 2016 10:59
-
-
Save mohayonao/a892550f37d4cd0f3325cc53eda5fa99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| const fs = require("fs") | |
| fs.readdirSync(__dirname).filter((x) => { | |
| return x.includes("SCUnit") && !x.includes("Kernel") && !x.includes("Expressions"); | |
| }).sort().map(x => x.replace(".js", "")).forEach((x) => { | |
| console.log(` ${ x }: require("./${ x }"),`) | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment