Skip to content

Commit 75f37d3

Browse files
aureooms- > @aureooms/ : update js code
1 parent e648d9a commit 75f37d3

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

lib/index.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import {
44
NotImplementedError ,
55
TypeError ,
66
ValueError ,
7-
} from 'aureooms-js-error' ;
7+
} from '@aureooms/js-error' ;
88

9-
import chainmap from 'aureooms-js-collections-chainmap' ;
10-
import dict from 'aureooms-js-collections-dict' ;
11-
import ordereddict from 'aureooms-js-collections-ordereddict' ;
12-
import defaultdict from 'aureooms-js-collections-defaultdict' ;
9+
import chainmap from '@aureooms/js-collections-chainmap' ;
10+
import dict from '@aureooms/js-collections-dict' ;
11+
import ordereddict from '@aureooms/js-collections-ordereddict' ;
12+
import defaultdict from '@aureooms/js-collections-defaultdict' ;
1313

1414
import {
1515
deque ,
@@ -19,11 +19,11 @@ import {
1919
EmptyDeque ,
2020
SingleElementDeque ,
2121
UnboundedDeque ,
22-
} from 'aureooms-js-collections-deque' ;
22+
} from '@aureooms/js-collections-deque' ;
2323

24-
import namedtuple from 'aureooms-js-collections-namedtuple' ;
25-
import counter from 'aureooms-js-collections-counter' ;
26-
import set from 'aureooms-js-collections-set' ;
24+
import namedtuple from '@aureooms/js-collections-namedtuple' ;
25+
import counter from '@aureooms/js-collections-counter' ;
26+
import set from '@aureooms/js-collections-set' ;
2727

2828
const collections = {
2929

test/src/chainmap.js

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

3-
import { increasing , lexicographical } from "aureooms-js-compare" ;
3+
import { increasing , lexicographical } from "@aureooms/js-compare" ;
44
const lex = lexicographical( increasing ) ;
55

6-
import { sorted } from "aureooms-js-itertools" ;
6+
import { sorted } from "@aureooms/js-itertools" ;
77

88
import { KeyError , dict , chainmap } from '../../src' ;
99

test/src/counter.js

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

3-
import { sorted } from "aureooms-js-itertools" ;
4-
import { increasing } from 'aureooms-js-compare' ;
3+
import { sorted } from "@aureooms/js-itertools" ;
4+
import { increasing } from '@aureooms/js-compare' ;
55

66
import { counter , NotImplementedError } from '../../src' ;
77

test/src/defaultdict.js

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

3-
import { $0 as default_factory } from "aureooms-js-number" ;
4-
import { increasing , lexicographical } from "aureooms-js-compare" ;
5-
import { sorted } from "aureooms-js-itertools" ;
3+
import { $0 as default_factory } from "@aureooms/js-number" ;
4+
import { increasing , lexicographical } from "@aureooms/js-compare" ;
5+
import { sorted } from "@aureooms/js-itertools" ;
66

77
const lex = lexicographical( increasing ) ;
88

test/src/deque.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
chain as c ,
77
map as m ,
88
filter as f ,
9-
} from 'aureooms-js-itertools' ;
9+
} from '@aureooms/js-itertools' ;
1010

1111
import {
1212
IndexError ,

test/src/dict.js

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

3-
import { increasing , lexicographical } from "aureooms-js-compare" ;
4-
import { sorted } from "aureooms-js-itertools" ;
5-
import { partial , rpartial } from "aureooms-js-functools" ;
3+
import { increasing , lexicographical } from "@aureooms/js-compare" ;
4+
import { sorted } from "@aureooms/js-itertools" ;
5+
import { partial , rpartial } from "@aureooms/js-functools" ;
66

77
import { KeyError , dict , defaultdict , ordereddict } from '../../src' ;
88

test/src/namedtuple.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 { list } from "aureooms-js-itertools" ;
3+
import { list } from "@aureooms/js-itertools" ;
44

55
import { namedtuple , ordereddict } from '../../src' ;
66

test/src/ordereddict.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 { list } from 'aureooms-js-itertools' ;
3+
import { list } from '@aureooms/js-itertools' ;
44

55
import { dict , ordereddict , KeyError } from '../../src' ;
66

0 commit comments

Comments
 (0)