Last active
July 11, 2025 07:25
-
-
Save Kcko/11fffabee622bde4af8621c262d1b1a6 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
// index.js | |
export * as MathUtils from "./math.js"; | |
export * as StringUtils from "./string-utils.js"; | |
// Usage: | |
// import { MathUtils, StringUtils } from './index.js'; | |
// modules/index.js | |
export { default as Calculator } from "./calculator.js"; | |
export { default as Logger } from "./logger.js"; | |
export * from "./math.js"; | |
export * from "./string-utils.js"; | |
export { ApiClient as Client, HTTP_METHODS as Methods } from "./config.js"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment