GE Lua Documentation

Press F to search!

jsonEncodePrefix

Definition


-- @/lua/common/utils.lua:353

function jsonEncodePrefix(prefix, v, postfix)
  bufTmp:reset()
  bufTmp:put(prefix)
  jsonEncode_rec(v)
  if postfix then
    bufTmp:put(postfix)
  end
  return tostring(bufTmp)
end

Callers