Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created January 25, 2016 16:41
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 chuck0523/729b214b9bfc9a38b8a8 to your computer and use it in GitHub Desktop.
Save chuck0523/729b214b9bfc9a38b8a8 to your computer and use it in GitHub Desktop.
var lib = require('lib');
lib.someFunc(); // 動的ルックアップ(遅い)
import * ad lib from 'lib';
lib.someFunc(); // 静的ルックアップ(動的ルックアップよりは速い)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment