ramped.at_least

Return true if the second value is the same as or bigger than the first.


License
ISC
Install
npm install ramped.at_least@0.1.0

Documentation

Ramped

A collection of functions to make functional programming easier.

I would highly recommend using Ramda first. This library implements a small subset of the functions in Ramda using a different approach in naming, parameter ordering, and separating packages.

Each of these functions can be installed individually by prefixing them with ramped., such as npm i ramped.make_array.

Install

To add as a dependency to a Node.js project:

npm i ramped --save

Usage

ramped = require('ramped')

convert = ramped.make_array([
    R.prop('a'),
    R.prop('b')
])

new_array = convert({a: 1, b: 2})
// [1, 2]

Functions

License

ISC