From 49fbf7df2d3f156b6ee2cc296be2f6d6fd1dd692 Mon Sep 17 00:00:00 2001 From: dnalborczyk Date: Fri, 19 Apr 2019 02:43:18 -0400 Subject: [PATCH] Update 999-big-list-of-options.md (#2812) --- 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