Just a quick question, is it possible to listen for multiple events, and react with the same callback? I'm using three instances of chokidar to listen for file changes/creation in folders for console/commands/events, and it would be nice to do something like chokidar.on(['add','change', callback) or similar. Is that possible, or should I just chain .on()?