Serialization fixed

This commit is contained in:
barsdeveloper
2021-11-08 22:28:26 +01:00
parent ad8c34cdab
commit 39e26bc0c2
12 changed files with 195 additions and 48 deletions

View File

@@ -0,0 +1,17 @@
import Primitive from "./Primitive";
export default class PathSymbol extends Primitive {
constructor(value) {
super()
this.value = new String(value).valueOf()
}
valueOf() {
this.value
}
toString() {
return this.value
}
}