src/outro.js
})();
Bootstrapping the framework
abaaso
.
bootstrap
();
Node, AMD & window supported
if
(
typeof
exports
!==
"undefined"
)
{
module
.
exports
=
$
;
}
else
if
(
typeof
define
===
"function"
)
{
define
(
"abaaso"
,
function
()
{
return
$
;
});
}
else
{
global
.
abaaso
=
$
;
}
})(
this
);
Bootstrapping the framework