Skip to content
Snippets Groups Projects
Commit 01dd0040 authored by John McLear's avatar John McLear
Browse files

lint: ChangesetUtils

parent 7c514460
Branches
Tags
No related merge requests found
......@@ -20,7 +20,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
exports.buildRemoveRange = function (rep, builder, start, end) {
exports.buildRemoveRange = (rep, builder, start, end) => {
const startLineOffset = rep.lines.offsetOfIndex(start[0]);
const endLineOffset = rep.lines.offsetOfIndex(end[0]);
......@@ -32,7 +32,7 @@ exports.buildRemoveRange = function (rep, builder, start, end) {
}
};
exports.buildKeepRange = function (rep, builder, start, end, attribs, pool) {
exports.buildKeepRange = (rep, builder, start, end, attribs, pool) => {
const startLineOffset = rep.lines.offsetOfIndex(start[0]);
const endLineOffset = rep.lines.offsetOfIndex(end[0]);
......@@ -44,7 +44,7 @@ exports.buildKeepRange = function (rep, builder, start, end, attribs, pool) {
}
};
exports.buildKeepToStartOfRange = function (rep, builder, start) {
exports.buildKeepToStartOfRange = (rep, builder, start) => {
const startLineOffset = rep.lines.offsetOfIndex(start[0]);
builder.keep(startLineOffset, start[0]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment