(classes, children, options, style)
| 1074 | */ |
| 1075 | class Span { |
| 1076 | constructor(classes, children, options, style) { |
| 1077 | this.children = void 0; |
| 1078 | this.attributes = void 0; |
| 1079 | this.classes = void 0; |
| 1080 | this.height = void 0; |
| 1081 | this.depth = void 0; |
| 1082 | this.width = void 0; |
| 1083 | this.maxFontSize = void 0; |
| 1084 | this.style = void 0; |
| 1085 | initNode.call(this, classes, options, style); |
| 1086 | this.children = children || []; |
| 1087 | } |
| 1088 | /** |
| 1089 | * Sets an arbitrary attribute on the span. Warning: use this wisely. Not |
| 1090 | * all browsers support attributes the same, and having too many custom |
no outgoing calls
no test coverage detected