1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Export to modules first, place at root.

This commit is contained in:
Cesar J. Alaniz 2012-08-30 11:25:44 -07:00
parent 23545d4403
commit b4c625c797

View File

@ -4,8 +4,8 @@
* MIT License | (c) Dustin Diaz 2011 * MIT License | (c) Dustin Diaz 2011
*/ */
!function (name, definition) { !function (name, definition) {
if (typeof define == 'function') define(definition) if (typeof module != 'undefined' && module.exports) module.exports = definition()
else if (typeof module != 'undefined' && module.exports) module.exports['browser'] = definition() else if (typeof define == 'function') define(definition)
else this[name] = definition() else this[name] = definition()
}('bowser', function () { }('bowser', function () {
/** /**