UNPKG
basic-math-utils
Version:
latest (0.3.4)
0.3.4
Basic math utilities for doing some basic math operations
basic-math-utils
/
src
/
tests
/
index.test.js
8 lines
(6 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ rangeUtils }
from
'../index'
;
describe
(
'Math-utils'
,
() =>
{
it
(
'rangeUtils should be exported'
,
() =>
{
expect
(rangeUtils.
constructor
.
name
).
toEqual
(
'RangeUtils'
); }); });