bolt
bolt copied to clipboard
`this[prior(this)]` missing `.val()`
this[prior(this)]
compiles to newData.child(data).val()
instead of the expected newData.child(data.val()).val()
.
There is a workaround which @mckoss mentioned in #173:
this[prior(this) + '']
compiles to :
newData.child(data.val() + '').val()