How to use the gte function from ramda

Find comprehensive JavaScript ramda.gte code examples handpicked from public code repositorys.

175
176
177
178
179
180
181
182
183
184

// Check if the sum of output transactions are equal the sum of input transactions + MINING_REWARD (representing the reward for the block miner)
let sumOfInputsAmount = R.sum(R.flatten(R.map(R.compose(R.map(R.prop('amount')), R.prop('inputs'), R.prop('data')), newBlock.transactions))) + Config.MINING_REWARD;
let sumOfOutputsAmount = R.sum(R.flatten(R.map(R.compose(R.map(R.prop('amount')), R.prop('outputs'), R.prop('data')), newBlock.transactions)));

let isInputsAmountGreaterOrEqualThanOutputsAmount = R.gte(sumOfInputsAmount, sumOfOutputsAmount);

if (!isInputsAmountGreaterOrEqualThanOutputsAmount) {
    console.error(`Invalid block balance: inputs sum '${sumOfInputsAmount}', outputs sum '${sumOfOutputsAmount}'`);
    throw new BlockAssertionError(`Invalid block balance: inputs sum '${sumOfInputsAmount}', outputs sum '${sumOfOutputsAmount}'`, { sumOfInputsAmount, sumOfOutputsAmount });
fork icon0
star icon1
watch icon0

2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
* @param {Number} b
* @return {Boolean}
* @see R.lte
* @example
*
*      R.gte(2, 1); //=> true
*      R.gte(2, 2); //=> true
*      R.gte(2, 3); //=> false
*      R.gte('a', 'z'); //=> false
*      R.gte('z', 'a'); //=> true
fork icon0
star icon0
watch icon0

+ 107 other calls in file

36
37
38
39
40
41
42
43
44
45
46
console.log(Add2)


console.log(
  R.filter(
    x => R.allPass([
      R.gte(R.__,3),
      R.lte(R.__,4)
    ])(x),
    arr
  )
fork icon0
star icon0
watch icon0

+ 2 other calls in file

11
12
13
14
15
16
17
18
19
20
21
const UNARY_OPERATORS = ["!", "~", "-@", "+@"];
const BINARY_OPERATORS = ["+", "-", "*", "/", "&", "|", "&&", "||", "<<", ">>", "==", "===", "!=", "<=", "<",
  "<=>", ">", ">=", "=~", "!~", "^", "**", "%"];


const isSelectorBinaryOperator = selector =>
  R.gte(
    R.indexOf(selector, BINARY_OPERATORS),
    0
  );

fork icon0
star icon0
watch icon0

Other functions in ramda

Sorted by popularity

function icon

ramda.clone is the most popular function in ramda (30311 examples)