Skip to content

Commit

Permalink
fix: f1 not printing input
Browse files Browse the repository at this point in the history
BREAKING CHANGE: added required input
  • Loading branch information
jpbnetley committed Mar 19, 2022
1 parent 3e1a7d2 commit c2c59c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/f1/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const f1 = () => console.log('f1 running')
export const f1 = input => console.log(`f1 running: ${input}`)
export const f2 = () => console.log('f1 running')

0 comments on commit c2c59c8

Please sign in to comment.