🐊Putout plugin adds ability to remove useless typeof
npm install @putout/plugin-remove-useless-typeof[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-useless-typeof.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-useless-typeof"npm"
> The typeof operator returns a string indicating the type of the unevaluated operand.
>
> (c) MDN
🐊Putout plugin adds ability to apply shorthand properties. Merged to @putout/plugin-types.
```
npm i @putout/plugin-remove-useless-typeof
`json`
{
"rules": {
"remove-useless-typeof": "on"
}
}
`js`
typeof typeof 'hello';
`js``
typeof 'hello';
MIT