Stylistic clean up.

master
baranovs 2014-09-17 17:41:59 +10:00
parent c58e1cab9f
commit 2056ab02b1
1 changed files with 3 additions and 3 deletions

View File

@ -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);