What is defining the exports module in the following snippet?
define(["require", "exports", 'durandal/app', 'durandal/http'], function(require, exports, __app__, __http__) {
.
.
.
}
I checked out this example, opened the solution and couldn't figure out whatever is defining the "exports" module. Is that just native to RequireJS now, or is there an external reference that I'm still missing?