prettier/tests/flow/object_annot/__snapshots__/jsfmt.spec.js.snap

23 lines
568 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
function foo(x: Array<Object>): Array<Object> {
return x.sort((a, b) => a.foo - b.foo);
}
// Make sure Object works with Object.keys()
function bar(x: Object): Array<string> {
return Object.keys(x);
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function foo(x: Array<Object>): Array<Object> {
return x.sort((a, b) => a.foo - b.foo);
}
// Make sure Object works with Object.keys()
function bar(x: Object): Array<string> {
return Object.keys(x);
}
`;