UNPKG

@putout/plugin-convert-imul-to-multiplication

Version:

🐊Putout plugin adds ability to convert 'Math.imul()' to operator '*'

9 lines (5 loc) 161 B
'use strict'; module.exports.report = () => `Use '*' instead of 'Math.imul()'`; module.exports.replace = () => ({ 'Math.imul(__a, __b)': '__a * __b', });