mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-27 09:32:08 +00:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/*
|
|
* this is what browserify will use if you use browserify on your tests.
|
|
* no need to bootstrap a DOM environment in a browser.
|
|
*/
|
|
|
|
module.exports = function () {
|
|
return noop
|
|
}
|
|
|
|
function noop () { }
|