Skip to content

Instantly share code, notes, and snippets.

@wmakeev
Last active January 23, 2023 05:20
Show Gist options
  • Save wmakeev/79731cd51829b5e8b2f814d821d9e3cc to your computer and use it in GitHub Desktop.
Save wmakeev/79731cd51829b5e8b2f814d821d9e3cc to your computer and use it in GitHub Desktop.
[Test bookmarklet] #bookmarklet #test
import { addValue } from "./module2.js";
export const foo = (name) => {
console.log(`${addValue(name)} in index.js`);
};
window._my_foo = foo;
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