A Karma preprocessor for the Buble ES2015+ compiler
npm install karma-buble-preprocessor

devDependency:
npm install --save-dev karma-buble-preprocessor
`Configuration
Just add it to the preprocessors section of your Karma configuration file, for instance:
`javascript
// karma.conf.js
module.exports = function (config) {
config.set({
preprocessors: {
'test/*/.js': ['buble']
}
})
}
`Purpose
This preprocessor uses Bublé to transpile JavaScript ES2015+ into
ES5 suitable for older runtimes.
- Bublé will not handle import` statements in the code, so consider using a packager such as