Skip to content

Commit

Permalink
minify-type-constructors: added [] and {} to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bfred-it authored Sep 21, 2016
1 parent bfd6004 commit f025fa7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/babel-plugin-minify-type-constructors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
Boolean(x);
Number(x);
String(x);
Array(3);
Array(3,1);
Object({foo: 'bar'});
```

**Out**
Expand All @@ -18,6 +21,9 @@ String(x);
!!x;
+x;
x + "";
[,,,];
[3, 1];
{foo: 'bar'};
```

## Installation
Expand Down

0 comments on commit f025fa7

Please sign in to comment.