Skip to content

Commit

Permalink
Add semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunhat committed Feb 25, 2019
1 parent bfa058f commit be42fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (Platform.OS === 'android') {
get(dim) {
try {
if(!NativeModules.ExtraDimensions) {
throw "ExtraDimensions not defined. Try rebuilding your project. e.g. react-native run-android"
throw "ExtraDimensions not defined. Try rebuilding your project. e.g. react-native run-android";
}
const result = NativeModules.ExtraDimensions[dim];

Expand All @@ -15,7 +15,7 @@ if (Platform.OS === 'android') {
}
return result;
} catch (e) {
console.error(e)
console.error(e);
}
}
};
Expand Down

0 comments on commit be42fd0

Please sign in to comment.