mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
17 lines
280 B
JavaScript
17 lines
280 B
JavaScript
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
|
|
}
|
|
} |