Skip to content

Commit

Permalink
Destructuring ES6 Module default export => not possible anymore (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhq authored Apr 13, 2020
1 parent db1ad68 commit e3d7db1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ npm install table
Table data is described using an array (rows) of array (cells).

```js
import {
table
} from 'table';
import tableImport from 'table';
const { table } = tableImport;

// Using commonjs?
// const {table} = require('table');
Expand Down

0 comments on commit e3d7db1

Please sign in to comment.