``` >>> import jsonplus >>> bytearray(10) bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') >>> jsonplus.dumps(bytearray(10)) ... TypeError: bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00') is not JSON serializable ```