Merge pull request #170 from voronianski/patch-1

fix global exports
pull/173/head
Denis Demchenko 8 years ago committed by GitHub
commit f249e67e4e

@ -4,11 +4,11 @@
* MIT License | (c) Dustin Diaz 2015
*/
!function (name, definition) {
!function (root, name, definition) {
if (typeof module != 'undefined' && module.exports) module.exports = definition()
else if (typeof define == 'function' && define.amd) define(name, definition)
else this[name] = definition()
}('bowser', function () {
else root[name] = definition()
}(this, 'bowser', function () {
/**
* See useragents.js for examples of navigator.userAgent
*/

Loading…
Cancel
Save