Skip to content

Commit

Permalink
🤖 refactor: Use ESM import syntax.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/aureooms/rejuvenate/blob/e086830dfe927964be93f46b8ecdacd2597eb487/src/transforms/codemod:use-esm-import-syntax.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Mar 25, 2021
1 parent 4ff3869 commit b4d786c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './heap' ;
export * from './indordseq' ;
export * from './intervaltree' ;
export * from './ordseq' ;
export * from './seq' ;
export * from "./heap.js" ;
export * from "./indordseq.js" ;
export * from "./intervaltree.js" ;
export * from "./ordseq.js" ;
export * from "./seq.js" ;
2 changes: 1 addition & 1 deletion test/src/heap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import test from 'ava' ;

import { Measures } from '@aureooms/js-measure' ;
import { empty } from '@aureooms/js-fingertree' ;
import { heap } from '../../src' ;
import { heap } from "../../src/index.js" ;

const Heap = heap( empty , Measures.PRIO ) ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/indordseq.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import test from 'ava' ;
import { Measures } from '@aureooms/js-measure' ;
import { list } from '@aureooms/js-itertools' ;
import { empty } from '@aureooms/js-fingertree' ;
import { indordseq } from '../../src' ;
import { indordseq } from "../../src/index.js" ;

const { KEY , LEN , KEY_LEN } = Measures ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/intervaltree.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import test from 'ava' ;
import { Measures } from '@aureooms/js-measure' ;
import { list } from '@aureooms/js-itertools' ;
import { empty } from '@aureooms/js-fingertree' ;
import { intervaltree } from '../../src' ;
import { intervaltree } from "../../src/index.js" ;

const IntervalTree = intervaltree( empty , Measures.INTERVAL ) ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/ordseq.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Measures } from '@aureooms/js-measure' ;
import { ge } from '@aureooms/js-predicate' ;
import { list } from '@aureooms/js-itertools' ;
import { empty } from '@aureooms/js-fingertree' ;
import { ordseq } from '../../src' ;
import { ordseq } from "../../src/index.js" ;

const OrdSeq = ordseq( empty , Measures.KEY ) ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/seq.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Measures } from '@aureooms/js-measure' ;
import { gt } from '@aureooms/js-predicate' ;
import { list, range } from '@aureooms/js-itertools' ;
import { empty } from '@aureooms/js-fingertree' ;
import { seq } from '../../src' ;
import { seq } from "../../src/index.js" ;

const Seq = seq( empty , Measures.SIZE ) ;

Expand Down

0 comments on commit b4d786c

Please sign in to comment.