Checking equality between a pair of keys/addresses/scripts/etc. in javascript requires something like the following. ```javascript Buffer.compare(a.toBytes(), b.toBytes()) === 0 ``` It would be nice to have a convenience method for checking this. ```javascript a.equals(b) ```