Skip to content

Commit

Permalink
3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
caiogondim committed Jul 13, 2017
1 parent 6ce5458 commit a2453a1
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 15 deletions.
13 changes: 7 additions & 6 deletions dist/logdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,16 +313,17 @@ module.exports = [
},{}],6:[function(require,module,exports){
(function (global){
/* eslint-disable no-new-func */
/* global self, global */

module.exports = function getGlobal() {
// return global object based on the environment present in.
// window for browser and global for node.
// https://github.com/purposeindustries/window-or-global/blob/master/lib/index.js
return (
module.exports = function getGlobal () {
// Return the global object based on the environment presently in.
// window for browser and global for node.
// Ref from -> https://github.com/purposeindustries/window-or-global/blob/master/lib/index.js
return (
(typeof self === 'object' && self.self === self && self) ||
(typeof global === 'object' && global.global === global && global) ||
this
)
)
}

}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
Expand Down
2 changes: 1 addition & 1 deletion dist/logdown.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/logdown.min.js.gzip
Binary file not shown.
13 changes: 7 additions & 6 deletions example/lib/logdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,16 +313,17 @@ module.exports = [
},{}],6:[function(require,module,exports){
(function (global){
/* eslint-disable no-new-func */
/* global self, global */

module.exports = function getGlobal() {
// return global object based on the environment present in.
// window for browser and global for node.
// https://github.com/purposeindustries/window-or-global/blob/master/lib/index.js
return (
module.exports = function getGlobal () {
// Return the global object based on the environment presently in.
// window for browser and global for node.
// Ref from -> https://github.com/purposeindustries/window-or-global/blob/master/lib/index.js
return (
(typeof self === 'object' && self.self === self && self) ||
(typeof global === 'object' && global.global === global && global) ||
this
)
)
}

}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logdown",
"version": "3.0.0",
"version": "3.0.1",
"description": "Debug utility with markdown support that runs on browser and server",
"main": "src/node.js",
"browser": "dist/logdown.min.js",
Expand Down

0 comments on commit a2453a1

Please sign in to comment.