README
简单实现对象的解构
const { b, c } = a, { d } = e;
const { b : x } = a
↓ ↓ ↓ ↓ ↓ ↓
const b = a.b;
const c = a.c;
const d = e.d;
const x = a.b;
a plugin for destructuring object --cc
<script type="module">
import babelPluginCcDestructuring from 'https://cdn.skypack.dev/babel-plugin-cc-destructuring';
</script>
const { b, c } = a, { d } = e;
const { b : x } = a
↓ ↓ ↓ ↓ ↓ ↓
const b = a.b;
const c = a.c;
const d = e.d;
const x = a.b;