libsql / hrana-client-ts

Hrana client for TypeScript and JavaScript
https://libsql.org/hrana-client-ts/
MIT License
22 stars 7 forks source link

Make row properties writable to match the behavior of the sqlite client #14

Closed ottomated closed 3 months ago

ottomated commented 5 months ago

In @libsql/client, column properties on rows are defined with writable: true.

Object.defineProperty(row, column, { value, enumerable: true, configurable: true, writable: true });

This was fixed in https://github.com/tursodatabase/libsql-client-ts/pull/166, but not in this repository.