🐊Putout plugin adds ability to remove useless 'Array.from()'
npm install @putout/plugin-remove-useless-array-from[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-useless-array-from.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-useless-array-from"npm"
🐊Putout plugin adds ability to remove useless Array.from(). Merged to @putout/plugin-for-of.
```
npm i @putout/plugin-remove-useless-array-from
`json`
{
"rules": {
"remove-useless-array-from": "on"
}
}
`js`
for (const x of Array.from(y)) {}
`js``
for (const x of y) {}
MIT