Skip to content

Commit

Permalink
Update 999-big-list-of-options.md (#2812)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk authored and lukastaegert committed Apr 19, 2019
1 parent 36fb97b commit 49fbf7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/999-big-list-of-options.md
Expand Up @@ -604,7 +604,7 @@ The wrinkle is that if you use `named` exports but *also* have a `default` expor
```js
const yourMethod = require( 'your-lib' ).yourMethod;
const yourLib = require( 'your-lib' )['default'];
const yourLib = require( 'your-lib' ).default;
```
#### output.freeze
Expand Down

0 comments on commit 49fbf7d

Please sign in to comment.