UNPKG
fxparser
Version:
latest (1.0.1)
1.0.1
1.0.0
Formula parser designed for Yotta Needs.
github.com/cohacks/fxparser
cohacks/fxparser
fxparser
/
lib
/
evaluate-by-operator
/
operator
/
equal.js
11 lines
(8 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
exports
.
__esModule
=
true
;
exports
[
'default'
] = func;
var
SYMBOL
=
exports
.
SYMBOL
=
'='
;
function
func
(
exp1, exp2
) {
return
exp1 === exp2; } func.
SYMBOL
=
SYMBOL
;