6 lines
119 B
JavaScript

var a = function (_ref) {
let target = _ref.target;
return console.log(target);
};
a({ target: "I am a target" });