@leafer/list 1.0.0-alpha.9 → 1.0.0-bate

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leafer/list",
3
- "version": "1.0.0-alpha.9",
3
+ "version": "1.0.0-bate",
4
4
  "description": "@leafer/list",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
@@ -19,6 +19,6 @@
19
19
  "leaferjs"
20
20
  ],
21
21
  "devDependencies": {
22
- "@leafer/interface": "1.0.0-alpha.9"
22
+ "@leafer/interface": "1.0.0-bate"
23
23
  }
24
24
  }
@@ -67,7 +67,7 @@ export class LeafLevelList implements ILeafLevelList {
67
67
  }
68
68
 
69
69
  public destroy(): void {
70
- this.levelMap = undefined
70
+ this.levelMap = null
71
71
  }
72
72
 
73
73
  }
package/src/LeafList.ts CHANGED
@@ -88,6 +88,6 @@ export class LeafList implements ILeafList {
88
88
  }
89
89
 
90
90
  public destroy(): void {
91
- this.list = undefined
91
+ this.list = null
92
92
  }
93
93
  }