added examples for transforms. [skip ci] (#5393)

This commit is contained in:
Nitin Tulswani
2017-03-14 20:13:51 +05:30
committed by Brian Ng
parent 0bc802cf1b
commit 8c1cd177b2
8 changed files with 197 additions and 0 deletions

View File

@@ -2,6 +2,22 @@
> Apply ES2015 function.name semantics to all functions
## Examples
**In**
```javascript
let number = (x) => x
```
**Out**
```javascript
var number = function number(x) {
return x;
};
```
## Installation
```sh