Skip to content

Instantly share code, notes, and snippets.

@ulcuber
Created March 22, 2019 12:05
Show Gist options
  • Save ulcuber/4ca703f92553f6ca3f638a04d8d318b2 to your computer and use it in GitHub Desktop.
Save ulcuber/4ca703f92553f6ca3f638a04d8d318b2 to your computer and use it in GitHub Desktop.
to make external libs rely on one jquery
const jq = {
get() { return jQuery; },
set() { },
};
Object.defineProperty(window, '$', jq);
Object.defineProperty(window, 'jQuery', jq);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment