From 56ed5803e9301c9d4103ac0175f465cce847de8d Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Wed, 17 Apr 2019 23:33:32 -0400 Subject: [PATCH] Update 999-big-list-of-options.md --- docs/999-big-list-of-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/999-big-list-of-options.md b/docs/999-big-list-of-options.md index 38736b1fcf7..e17ec2dcd7a 100755 --- a/docs/999-big-list-of-options.md +++ b/docs/999-big-list-of-options.md @@ -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