-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SonoIo
authored and
SonoIo
committed
Feb 19, 2015
1 parent
2282213
commit 7ce46b3
Showing
3 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
;(function (root, factory) { | ||
|
||
module.exports = {}; | ||
if (typeof define === 'function' && define.amd) { | ||
define([], function () { | ||
return factory(root); | ||
}); | ||
} | ||
else if (typeof exports !== 'undefined') { | ||
module.exports = factory(root); | ||
} | ||
else { | ||
root.context = factory(root); | ||
} | ||
|
||
}(this, function (root) { | ||
return {}; | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters