Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.01 KB

README.md

File metadata and controls

26 lines (17 loc) · 1.01 KB

unary-with-optional-callback

Build Status Coverage Status Code Climate

Creates a unary function with an optional transformer callback from a callable and a transformer fallback

Install

npm i unary-with-optional-callback

Usage

var unaryWithOptionalCallback = require('unary-with-optional-callback');

function transformableSqrt(transformer, x) {
  return transformer(Math.sqrt(x));
}

var integerSqrt = unaryWithOptionalCallback(transformableSqrt, Math.floor);

integerSqrt(8); // => 2
integerSqrt(8, Math.ceil); // => 3