Website/helpers/list.js

1 line
90 B
JavaScript
Raw Normal View History

2016-03-20 17:27:45 -04:00
module.exports = function(l){ if(l == null) { return "?"; } else { return l.join(", ") } }