prettier/tests/literal-numeric-separator/__snapshots__/jsfmt.spec.js.snap

31 lines
333 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
1_1
1_1.1_1
0o1_1
0o0_11
1.1_0_1e1
1.1_0_1E1
.1_1
0x1_1
0xa_1
0xA_1
0b01_1
0b0_1_1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1_1;
1_1.1_1;
0o1_1;
0o0_11;
1.1_0_1e1;
1.1_0_1e1;
0.1_1;
0x1_1;
0xa_1;
0xa_1;
0b01_1;
0b0_1_1;
`;