Stylistic clean up.
parent
c58e1cab9f
commit
2056ab02b1
|
@ -1,11 +1,11 @@
|
|||
(function (glob, factory) {
|
||||
// AMD support
|
||||
if (typeof define === "function" && define.amd) {
|
||||
if (typeof define == "function" && define.amd) {
|
||||
// Define as an anonymous module
|
||||
define(["eve"], function( eve ) {
|
||||
define(["eve"], function (eve) {
|
||||
return factory(glob, eve);
|
||||
});
|
||||
} else if (typeof exports !== 'undefined') {
|
||||
} else if (typeof exports != 'undefined') {
|
||||
// Next for Node.js or CommonJS
|
||||
var eve = require('eve');
|
||||
module.exports = factory(glob, eve);
|
||||
|
|
Loading…
Reference in New Issue