initial commit
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import { escapeElement } from "./escape-element";
|
||||
export class XmlText {
|
||||
value;
|
||||
constructor(value) {
|
||||
this.value = value;
|
||||
}
|
||||
toString() {
|
||||
return escapeElement("" + this.value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user