UNPKG
background-removal-js
Version:
latest (5.0.1)
5.0.1
3.0.1
2.3.8
background-removal-js
github.com/imgly
imgly/background-removal-js
background-removal-js
/
LogTwo.test.js
8 lines
(6 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ logTwo }
from
'../LogTwo'
for
(
let
i =
1
; i <
100
; i++) {
test
(
'log2('
+ i +
')'
,
() =>
{
expect
(
logTwo
(i)).
toBe
(
Math
.
floor
(
Math
.
log2
(i))) }) }