ramped.at_least
v0.2.0
Published
Return true if the second value is the same as or bigger than the first.
Readme
Ramped at least
Return true if the second value is the same as or bigger than the first.
Install
To add as a dependency to a Node.js project:
npm i ramped.at_least --saveUsage
at_least = require('ramped.at_least')
is_4_or_more = at_least(4)
is_4_or_more(6)
// true
is_4_or_more(4)
// true
is_4_or_more(2)
// false