Created
January 23, 2026 21:46
-
-
Save ryanwilsonperkin/0f22254e746693c01d11fd80a2f23e18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default function add(a,b) {return a+b}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export {default as add} from './add.mjs'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {add as addFn} from './util/index.mjs'; | |
| addFn(1,1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "unbarrelify-renames", | |
| "version": "1.0.0", | |
| "main": "src/main.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "type": "module", | |
| "author": "", | |
| "license": "ISC", | |
| "description": "" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment