@@ -44,19 +44,19 @@ var opts = {
44
44
45
45
// TESTS //
46
46
47
- tape ( 'main export is a function' , opts , function test ( t ) {
47
+ tape ( 'main export is a function' , opts , function test ( t ) {
48
48
t . ok ( true , __filename ) ;
49
49
t . strictEqual ( typeof kurtosis , 'function' , 'main export is a function' ) ;
50
50
t . end ( ) ;
51
51
} ) ;
52
52
53
- tape ( 'if provided `NaN` for `lambda`, the function returns `NaN`' , opts , function test ( t ) {
53
+ tape ( 'if provided `NaN` for `lambda`, the function returns `NaN`' , opts , function test ( t ) {
54
54
var v = kurtosis ( NaN ) ;
55
55
t . equal ( isnan ( v ) , true , 'returns NaN' ) ;
56
56
t . end ( ) ;
57
57
} ) ;
58
58
59
- tape ( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`' , opts , function test ( t ) {
59
+ tape ( 'if provided a shape parameter `lambda` which is nonpositive, the function returns `NaN`' , opts , function test ( t ) {
60
60
var v ;
61
61
62
62
v = kurtosis ( 0.0 ) ;
@@ -68,7 +68,7 @@ tape( 'if provided a shape parameter `lambda` which is nonpositive, the function
68
68
t . end ( ) ;
69
69
} ) ;
70
70
71
- tape ( 'the function returns the excess kurtosis of a Planck distribution' , opts , function test ( t ) {
71
+ tape ( 'the function returns the excess kurtosis of a Planck distribution' , opts , function test ( t ) {
72
72
var expected ;
73
73
var lambda ;
74
74
var delta ;
0 commit comments