Skip to content

Instantly share code, notes, and snippets.

@tai2
Created January 27, 2018 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tai2/cd9e46e57fc45c535d8294ea23f1e070 to your computer and use it in GitHub Desktop.
Save tai2/cd9e46e57fc45c535d8294ea23f1e070 to your computer and use it in GitHub Desktop.
import { g } from './B';
export function f() {
utility();
g();
}
function utility() {
// ...
}
export function g() {
utility();
}
function utility() {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment