Small stuff to make eslint happy

This commit is contained in:
Mike Schwörer 2016-12-16 22:32:19 +01:00
parent 4c36123fd7
commit dea16f63f5
No known key found for this signature in database
GPG key ID: D3C7172E0A70F8CF
2 changed files with 2 additions and 2 deletions

View file

@ -396,7 +396,7 @@ var Extract = {
};
return Array.apply(null, Array(result.length))
.map(function (_, i) {return result[i];})
.map((_, i) => result[i])
.map(nodeToString)
.join(delimiter);
},