UNPKG
distinctiomagnam
Version:
latest (1.2.0)
1.2.0
1.1.1
1.1.0
1.0.0
JavaScript Obfuscation Tool.
github.com/JanaBeier/distinctiomagnam
JanaBeier/distinctiomagnam
distinctiomagnam
/
test
/
util
/
math.test.ts
6 lines
(4 loc)
•
159 B
text/typescript
View Raw
1
2
3
4
5
6
import
{ getFactors }
from
"../../src/util/math"
;
it
(
"getFactors() should return correct factors"
,
() =>
{
expect
(
getFactors
(
6
)).
toEqual
([
1
,
6
,
2
,
3
]); });