Skip to content

Commit

Permalink
Added ceil module
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Nov 13, 2018
1 parent 99eaeaa commit 0601c04
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ceil.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict'
const curry = require('./curry')

function ceil(x) {
return Math.ceil(x)
}

module.exports = curry(ceil)

0 comments on commit 0601c04

Please sign in to comment.