@adbl/cells 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -210,7 +210,7 @@ export class Cell {
210
210
  */
211
211
  toString() {
212
212
  // @ts-ignore
213
- return this.wvalue.toString();
213
+ return String(this.wvalue);
214
214
  }
215
215
 
216
216
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbl/cells",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A simple implementation of reactive updates for JavaScript",
5
5
  "main": "index.js",
6
6
  "private": false,