Skip to content

Commit e886306

Browse files
aureooms- > @aureooms/ : update js code
1 parent 0986695 commit e886306

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

test/src/inplacesort.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import ava from 'ava' ;
22

3-
import { swap } from "aureooms-js-array" ;
4-
import { binarysearch } from "aureooms-js-search" ;
5-
import * as spec from "aureooms-js-in-situ-sort-spec" ;
3+
import { swap } from "@aureooms/js-array" ;
4+
import { binarysearch } from "@aureooms/js-search" ;
5+
import * as spec from "@aureooms/js-in-situ-sort-spec" ;
66
import * as sort from "../../src" ;
77

88
spec.test( ava , [

test/src/issorted.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava' ;
22

3-
import { increasing , decreasing } from "aureooms-js-compare" ;
3+
import { increasing , decreasing } from "@aureooms/js-compare" ;
44

55
import { issorted } from '../../src' ;
66

test/src/whole.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import test from 'ava' ;
22

3-
import array from "aureooms-js-array" ;
4-
import search from "aureooms-js-search" ;
5-
import random from "aureooms-js-random" ;
6-
import compare from "aureooms-js-compare" ;
7-
import * as itertools from "aureooms-js-itertools" ;
8-
import functools from "aureooms-js-functools" ;
3+
import array from "@aureooms/js-array" ;
4+
import search from "@aureooms/js-search" ;
5+
import random from "@aureooms/js-random" ;
6+
import compare from "@aureooms/js-compare" ;
7+
import * as itertools from "@aureooms/js-itertools" ;
8+
import functools from "@aureooms/js-functools" ;
99

1010
import * as sort from '../../src' ;
1111

0 commit comments

Comments
 (0)