handsontable/formula-parser

View on GitHub
src/evaluate-by-operator/operator/less-than-or-equal.js

Summary

Maintainability
A
0 mins
Test Coverage
export const SYMBOL = '<=';

export default function func(exp1, exp2) {
  return exp1 <= exp2;
}

func.SYMBOL = SYMBOL;