Change old examples format into new one
Change format of examples in packages/*/README.md files to a new format:
Old: @putout/plugin-remove-debugger.
New: @putout/plugin-extract-object-properties.
Here is example:
const hello = 'world';
debugger;
console.log(hello);
const hello = 'world';
console.log(hello);