babel-plugin-cc-destructuring

a plugin for destructuring object --cc

Usage no npm install needed!

<script type="module">
  import babelPluginCcDestructuring from 'https://cdn.skypack.dev/babel-plugin-cc-destructuring';
</script>

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;