aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/nested-destructuring-should-print-correctly.js
blob: 072c4f93f47c5bd6194b9cc71ecb7c8381932705 (plain) (blame)
1
2
3
4
5
6
7
function hey({
  config: {
    options: { ignore: e, only: t },
  },
}) {
  return shouldIgnore(a, e, t, u);
}