File: expected.js

package info (click to toggle)
django-pipeline 4.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 912 kB
  • sloc: python: 3,170; makefile: 119; javascript: 59
file content (4 lines) | stat: -rw-r--r-- 154 bytes parent folder | download
1
2
3
4
function getName(u) {
    return "".concat(u.firstName, " ").concat(u.lastName);
}
var userName = getName({ firstName: "Django", lastName: "Pipeline" });