prettier/tests/destructuring/__snapshots__/jsfmt.spec.js.snap

13 lines
376 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`destructuring.js 1`] = `
const [one, two = null, three = null] = arr;
a = ([s=1,]) => 1
const { children, ...props } = this.props
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
const [one, two = null, three = null] = arr;
a = ([s = 1]) => 1;
const { children, ...props } = this.props;
`;