File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import test from 'ava' ;
2
- import * as array from "@aureooms/js-array" ;
2
+ import { alloc } from "@aureooms/js-array" ;
3
3
import * as number from "@aureooms/js-number" ;
4
4
5
5
import * as fibonacci from '../../src' ;
@@ -10,7 +10,7 @@ test( "array" , t => {
10
10
11
11
n = 46 ;
12
12
13
- a = array . alloc ( n + 1 ) ;
13
+ a = alloc ( n + 1 ) ;
14
14
a [ 0 ] = number . $0 ( ) ;
15
15
a [ 1 ] = number . $1 ( ) ;
16
16
Original file line number Diff line number Diff line change 1
1
import test from 'ava' ;
2
- import * as array from "@aureooms/js-array" ;
2
+ import { alloc } from "@aureooms/js-array" ;
3
3
import * as number from "@aureooms/js-number" ;
4
4
5
5
import * as fibonacci from '../../src' ;
@@ -10,7 +10,7 @@ test( "rarray" , t => {
10
10
11
11
n = 46 ;
12
12
13
- a = array . alloc ( n + 1 ) ;
13
+ a = alloc ( n + 1 ) ;
14
14
a [ 0 ] = number . $0 ( ) ;
15
15
a [ 1 ] = number . $1 ( ) ;
16
16
You can’t perform that action at this time.
0 commit comments