Skip to content

Commit

Permalink
style: add missing trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
aikoven committed Dec 1, 2016
1 parent c1cddbf commit c6819ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface Failure<P, E> {

export function isType<P>(
action: ReduxAction,
actionCreator: ActionCreator<P>
actionCreator: ActionCreator<P>,
): action is Action<P> {
return action.type === actionCreator.type;
}
Expand Down Expand Up @@ -98,7 +98,7 @@ export default function actionCreatorFactory(

return action;
},
{type: fullType}
{type: fullType},
);
}

Expand Down

0 comments on commit c6819ec

Please sign in to comment.