ident function

String ident(
  1. String s
)

Implementation

String ident(String s) {
  if (s.startsWith("`")) {
    return s;
  }
  return "`$s`";
}