bolt icon indicating copy to clipboard operation
bolt copied to clipboard

`this[prior(this)]` missing `.val()`

Open thebnich opened this issue 7 years ago • 1 comments

this[prior(this)] compiles to newData.child(data).val() instead of the expected newData.child(data.val()).val().

thebnich avatar Mar 31 '17 06:03 thebnich

There is a workaround which @mckoss mentioned in #173:

this[prior(this) + ''] compiles to : newData.child(data.val() + '').val()

bpinney avatar Jun 13 '17 21:06 bpinney