@putout/plugin-convert-label-to-object
v2.0.1
Published
šPutout plugin adds ability to find and convert 'label' to 'object'
Downloads
5,459
Maintainers
Readme
@putout/plugin-convert-label-to-object
A labeled statement is any
statement
that is prefixed with anidentifier
. You can jump to this label using abreak
orcontinue
statement nested within the labeled statement. (c) MDN
šPutout plugin adds ability to find and convert label
to object
. Merged to @putout/plugin-labels
.
Checkout in šPutout Editor.
Install
npm i @putout/plugin-convert-label-to-object
Rule
{
"rules": {
"convert-label-to-object": "on"
}
}
ā Example of incorrect code
const a = () => {
hello: 'world';
x: 'm';
};
ā Example of correct code
const a = () => ({
hello: 'world',
x: 'm',
});
License
MIT