1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00
Files
Boostnote/index.js
2015-11-24 04:16:43 +09:00

7 lines
139 B
JavaScript

var argv = process.argv.slice(1)
if (argv.some(arg => arg.match(/--finder/))) {
require('./finder.js')
} else {
require('./main.js')
}