difftastic/sample_files/trailing_commas_2.js

14 lines
99 B
JavaScript

function foo(
x,
y,
) {
var z = [
1,
2,
];
var zz = {
a: 1,
b: 2,
};
}