UNPKG
pogojs
Version:
latest (1.0.0)
1.0.0
0.1.0
0.0.0
0.0.0-development
Library to accompany the Pogo stack
github.com/DaveOrDead/pogojs
DaveOrDead/pogojs
pogojs
/
dist
/
utils
/
functionsMatch.js
10 lines
(8 loc)
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
functionsMatch =
function
functionsMatch
(
f1, f2
) {
return
String
(f1) ===
String
(f2); };
exports
.
default
= functionsMatch;