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

20 lines
668 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`arrows-bind.js 1`] = `
====================================options=====================================
parsers: ["babylon"]
printWidth: 80
| printWidth
=====================================input======================================
a => ({}::b()\`\`[''].c++ && 0 ? 0 : 0);
(a => b)::c;
a::(b => c);
=====================================output=====================================
a => ({}::b()\`\`[""].c++ && 0 ? 0 : 0);
(a => b)::c;
a::(b => c);
================================================================================
`;