prettier/tests/tabWith/nested-functions.spec.js

12 lines
143 B
JavaScript
Raw Normal View History

2017-01-13 09:30:59 +03:00
const c = () => {};
function a() {
return function b() {
return () => {
return function() {
return c;
}
}
}
}