For instance ``` local a = { foo: "bar" }; local b = std.objectRemoveKey(a, "foo"); b + { foo: "bar2" } ``` should output ``` { "foo": "bar2" } ``` Right now, it's outputs an empty object.
For instance
should output
Right now, it's outputs an empty object.