Skip to content

Commit 82a6a2a

Browse files
aureooms- > @aureooms/ : update js code
1 parent 55b3da5 commit 82a6a2a

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

lib/_DefaultDict.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/_DefaultDict.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { KeyError } from 'aureooms-js-error' ;
2-
import { fromkeys } from 'aureooms-js-mapping' ;
1+
import { KeyError } from '@aureooms/js-error' ;
2+
import { fromkeys } from '@aureooms/js-mapping' ;
33

44
export default function _DefaultDict ( Dict , Map ) {
55

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import _DefaultDict from './_DefaultDict' ;
22
import _defaultdict from './_defaultdict' ;
33

4-
import { Dict } from 'aureooms-js-collections-dict' ;
4+
import { Dict } from '@aureooms/js-collections-dict' ;
55

66
const DefaultDict = _DefaultDict( Dict , Map ) ; // use native Map implementation
77
const defaultdict = _defaultdict( DefaultDict ) ;

test/src/defaultdict.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import test from 'ava' ;
22

3-
import { $0 as default_factory } from "aureooms-js-number" ;
3+
import { $0 as default_factory } from "@aureooms/js-number" ;
44
const lex = lexicographical( increasing ) ;
55

6-
import { increasing , lexicographical } from "aureooms-js-compare" ;
7-
import { sorted } from "aureooms-js-itertools" ;
8-
import { KeyError } from 'aureooms-js-error' ;
6+
import { increasing , lexicographical } from "@aureooms/js-compare" ;
7+
import { sorted } from "@aureooms/js-itertools" ;
8+
import { KeyError } from '@aureooms/js-error' ;
99

1010
import defaultdict from '../../src' ;
1111

test/src/dict.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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" ;
7-
import { partial , rpartial } from "aureooms-js-functools" ;
8-
import { KeyError } from 'aureooms-js-error' ;
6+
import { sorted } from "@aureooms/js-itertools" ;
7+
import { partial , rpartial } from "@aureooms/js-functools" ;
8+
import { KeyError } from '@aureooms/js-error' ;
99

1010
import defaultdict from '../../src' ;
1111

0 commit comments

Comments
 (0)