make Range start and end public

pull/21833/head
Bruno Windels 2019-09-04 16:38:42 +02:00
parent 7dc39baaf3
commit c15dfc3c05
1 changed files with 8 additions and 0 deletions

View File

@ -80,4 +80,12 @@ export default class Range {
});
return len;
}
get start() {
return this._start;
}
get end() {
return this._end;
}
}