Merge pull request #115 from nicholaswyoung/master

Fix 'undefined module' error in lib/browser.js
This commit is contained in:
Eran Hammer 2014-05-19 21:01:57 -07:00
Родитель 24e483a3e3 634ece5d32
Коммит 2d8bd00bd8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -549,7 +549,7 @@ hawk.crypto.internals = CryptoJS;
// Export if used as a module
if (module && module.exports) {
if (('undefined' !== typeof(module)) && module.exports) {
module.exports = hawk;
}