Skip to content

Commit

Permalink
fix: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rturnq committed Nov 7, 2023
1 parent b3586c8 commit 7c3688d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/babel-plugin-cjs-interop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import { isCJSModule, resolve } from "./resolve";
*
* 3. Source: ```import foo, * as nsFoo from 'foo';```
* Becomes: ```
* import _nsFoo from 'foo';
* const myFoo = nsFoo?.__esModule ? _foo.default : _foo
* import nsFoo from 'foo';
* const myFoo = nsFoo?.__esModule ? nsFoo.default : nsFoo
* ```
*/
export default function plugin(options: {
Expand Down

0 comments on commit 7c3688d

Please sign in to comment.