Removed unneeded function

This commit is contained in:
Ajay Ramachandran
2020-01-09 12:39:48 -05:00
parent d0e7213cc4
commit 309b1b007e

4
SB.js
View File

@@ -26,10 +26,6 @@ class MapIO {
return this.map.has(key);
}
toJSON() {
return Array.from(this.map.entries());
}
deleteProperty(key) {
if (this.map.has(key)) {
this.map.delete(key);