0.0.1 • Published 11 years ago

restrictary v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
11 years ago

restrictary

Higher-order functions that restrict the arity of a function.

Why

To be more useful with other higher-order functions, of course!

var r = require('restrictary');

['100', '200', '3'].map(r.unary(parseInt));

API

The following functions are offered:

  • nullary - restricts a function to take no arguments
  • unary - restricts a function to take a single argument
  • binary - restricts a function to take two arguments
  • ternary - restricts a function to take three arguments

Install

npm

npm install restrictary