Skip to content

Commit

Permalink
fix: don't include binaries in build
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinFunk committed Feb 16, 2018
1 parent d6409a5 commit 4bda380
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .gmodignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ README.md
changelog_footer_template.hbs
wercker.yml
bin/
bin/*
bin/*
sync.ps1
13 changes: 1 addition & 12 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,5 @@ Check Installation, Guide and Developer.pdf for more information.`)
}

if (require.main === module) {
// module.exports()
function fib(n, cont = x => x) {
if (n <= 1) return cont(n);
return fib(
n - 2,
n2 => fib(
n - 1,
n1 => cont(n2 + n1)
)
);
}
console.log(fib(1000000))
module.exports()
}

0 comments on commit 4bda380

Please sign in to comment.