* Returns a portion of this YXmlFragment into a JavaScript Array selected * from start to end (end not included). * * @param {number} [start] * @param {number} [end] * @return {Array >}
(start = 0, end = this.length)
| 1253 | * @return {Array<delta.DeltaConfGetChildren<DConf>>} |
| 1254 | */ |
| 1255 | slice (start = 0, end = this.length) { |
| 1256 | return typeListSlice(this, start, end) |
| 1257 | } |
| 1258 | |
| 1259 | /** |
| 1260 | * @todo refactor this, this should use getContent only! |
no test coverage detected