PathSymbol => PathSymbolEntity

This commit is contained in:
barsdeveloper
2021-11-23 20:05:36 +01:00
parent ffe50c2be5
commit a224903f35
8 changed files with 773 additions and 746 deletions

View File

@@ -1,17 +0,0 @@
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
}
}