Handle options as goja.Object
directly as opposed to exported map[string]interface{}
#27
Labels
enhancement
New feature or request
At the moment we parse the options provided by the user in a two step process:
goja.Object
to amap[string]interface{}
This leads to what we think to be unnecessary json marshalling/unmarshalling to ensure correctness and consistency when working on a
goja.Object
directly might have been easier.We probably should make a pass over the options handling code to operate that replacement 👍🏻
The text was updated successfully, but these errors were encountered: