lua-protobuf icon indicating copy to clipboard operation
lua-protobuf copied to clipboard

[feature request] allow custom encoding of buildin types

Open StarlightIbuki opened this issue 3 years ago • 0 comments

It would be helpful to allow this:

pb.custom_encode('bool', function (v) 
  return v and not v == "false"
end

(I'm not sure if hook does what this does so I wrote custom_encode, and currently pb refuses to hook build-in types)

StarlightIbuki avatar Aug 02 '22 03:08 StarlightIbuki