Skip to content

Commit

Permalink
fix recursive function to play well with metro bundler, fix facebook/…
Browse files Browse the repository at this point in the history
  • Loading branch information
sibelius committed Nov 7, 2017
1 parent 98b1c01 commit f0a598b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExNavigationRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export function createRouter<RC: RouteCreator>(
return new ExNavigationRouter(routesCreator, options);
}

function _isSerializable(obj: Object): boolean {
const _isSerializable = (obj: Object) => boolean {
if (
_.isUndefined(obj) ||
_.isNull(obj) ||
Expand Down

0 comments on commit f0a598b

Please sign in to comment.