Last active
January 23, 2023 05:20
-
-
Save wmakeev/79731cd51829b5e8b2f814d821d9e3cc to your computer and use it in GitHub Desktop.
[Test bookmarklet] #bookmarklet #test
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 { addValue } from "./module2.js"; | |
export const foo = (name) => { | |
console.log(`${addValue(name)} in index.js`); | |
}; | |
window._my_foo = foo; |
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
const CONST = "CONST_VALUE"; | |
export const addValue = (str) => `${str} ${CONST}`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment