ramda-maybe

0.18.0 • Public • Published

ramda-maybe

Wrapping ramda functions that might return undefined in a Maybe. The implementation of Maybe is provided by ramda-fantasy. All other ramda functions are left unchanged.

usage

var R = require('ramda-maybe');

R.find(R.is(String), [ 1, 'a' ]); //=> Maybe('a')

R.add(1, 2); //=> 3

wrapped functions

  • find: (a -> Boolean) -> [a] -> Maybe(a)
  • findLast: (a -> Boolean) -> [a] -> Maybe(a)
  • head: [a] -> Maybe(a)
  • last: [a] -> Maybe(a)
  • nth: Number -> [a] -> Maybe(a)
  • path: [String] -> {k: v} -> Maybe(v)
  • prop: String -> {k: v} -> Maybe(v)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.18.0
    1
    • latest

Version History

Package Sidebar

Install

npm i ramda-maybe

Weekly Downloads

4

Version

0.18.0

License

ISC

Last publish

Collaborators

  • theludd