UNPKG
isoddlift
Version:
latest (1.0.1)
1.0.1
1.0.0
Returns true unless the lift is squat or deadlift
isoddlift
/
src
/
index.ts
6 lines
(5 loc)
•
175 B
text/typescript
View Raw
1
2
3
4
5
6
function
isOddLift
(
lift
:
string
):
boolean
{
const
normalized = lift.
toLowerCase
();
return
normalized !==
"squat"
&& normalized !==
"deadlift"
; }
export
= isOddLift;