Skip to content

Commit 10b4e86

Browse files
committed
drop an unneeded comment
1 parent 28cf2e9 commit 10b4e86

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/core-js/internals/uint8-from-hex.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ module.exports = function (string, into) {
1212
if (stringLength % 2 !== 0) throw new SyntaxError('String should be an even number of characters');
1313
var maxLength = into ? min(into.length, stringLength / 2) : stringLength / 2;
1414
var bytes = into || new Uint8Array(maxLength);
15-
// This splitting is faster than using substrings each time.
1615
var segments = stringMatch(string, /.{2}/g);
1716
var written = 0;
1817
for (; written < maxLength; written++) {

0 commit comments

Comments
 (0)