pgsql=# -- Multiline comments pgsql=# SELECT 'Multi' /* This comment extends across pgsql*# * numberous lines, and can be pgsql*# * /*nested safely */ pgsql*# Can you understand pgsql*# * Now the end*/ pgsql-# || '-test' AS example; example ---------
var sortBy = function (filed, rev, primer) { rev = (rev) ? -1 : 1; return function (a, b) { a = a[filed]; b = b[filed]; if (typeof (primer) != 'undefined') { a = primer(a); b = primer(b); }