oxc icon indicating copy to clipboard operation
oxc copied to clipboard

feat(transformer): transform `BindingRestProperty`

Open Boshen opened this issue 3 months ago • 1 comments

Part of #6959

let { x, ...y } = z

->

var _z = z,
  x = _z.x,
  y = _objectWithoutProperties(_z, ["x"]);

Boshen avatar Oct 29 '24 14:10 Boshen