UNPKG
@cromarmot/algo
Version:
latest (2.1.0)
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
Algorithms library with controllable time complexity.
github.com/CroMarmot/algo
CroMarmot/algo
@cromarmot/algo
/
dist
/
fp
/
isNumberOne
/
n.js
7 lines
(6 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
function
default_1
(
v
) {
return
v ===
1
; }
exports
.
default
= default_1;