🐊Putout plugin convert spread to Array.from. Not installed, by default, used @putout/plugin-convert-array-copy-to-slice instead.
npm i @putout/plugin-convert-spread-to-array-from
{
"rules": {
"convert-spread-to-array-from": "on"
}
}const places = [
...runPlugins(),
];const places = Array.from(runPlugins());MIT