$ cnpm install @putout/plugin-convert-const-to-let
The
TypeErrorobject represents an error when attempting to modify a value that cannot be changed.(c) MDN
????Putout plugin adds ability to convert const to let to avoid TypeError. Merged with @putout/plugin-variables.
Check out in ????Putout Editor.
npm i @putout/plugin-convert-const-to-let -D
{
"rules": {
"convert-const-to-let": "on"
}
}
const a = 5;
a = 3;
let a = 5;
a = 3;
MIT
Copyright 2013 - present © cnpmjs.org | Home |