Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rpominov/fantasy-land
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 00aa55e679b85e118f4877ee3095fc215235b109
Choose a base ref
..
head repository: rpominov/fantasy-land
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fb80d0d832d8d642427c045ef53538bbe92dd510
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 index.js
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -8,9 +8,9 @@
var empty = {};

if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = mapping;
module.exports = empty;
} else {
self.FantasyLand = mapping;
self.FantasyLand = empty;
}

}());