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/make-github-pseudonymous-again/rejuvenate/blob/8134808bd3e9bcbb3e4b2ca5401e2dee58965a01/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 Dec 21, 2021
1 parent 1a9560a commit 6c5f8ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './heapsort' ;
export * from './heapsort.js' ;
2 changes: 1 addition & 1 deletion test/src/heapsort.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ava from 'ava' ;

import * as spec from "@comparison-sorting/specification" ;
import * as heapsort from "../../src" ;
import * as heapsort from '../../src/index.js' ;

spec.test( ava , [
[ "heapsort (unary)", heapsort.dary( 1 ) ],
Expand Down

0 comments on commit 6c5f8ec

Please sign in to comment.