// A) Importing named exports
import { foo, bar, baz } from 'utils';
// B) Importing and renaming a named export
import { foo as fooDelish } from 'utils';
// C) Importing the default export
import foo from 'utils';
// D) Importing and renaming the default export
import { default as fooDelish } from 'utils';
// E) Importing the default export and other named exports
import foo, { bar, baz } from 'utils';
// F) Importing everything from a module into a single namespace
import * as utils from 'utils';
utils.foo();
utils.bar();
utils.baz();
// G) Load, compile and evaluate the module (but don't import any members)
import 'utils';