Skip to content

Commit c753fe4

Browse files
committed
[Dev Deps] update eslint, @ljharb/eslint-config, @unicode/unicode-15.0.0, make-generator-function, npmignore, ses
1 parent ba4a616 commit c753fe4

36 files changed

Lines changed: 184 additions & 135 deletions

.eslintrc

Lines changed: 0 additions & 103 deletions
This file was deleted.

2015/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@ module.exports = function IteratorClose(iterator, completion) {
3333

3434
// if the completion is of type "throw", this will throw.
3535
completionThunk();
36+
// eslint-disable-next-line no-useless-assignment
3637
completionThunk = null; // ensure it's not called twice.
3738

3839
// if not, then return the innerResult completion
3940
throw e;
4041
}
4142
completionRecord = completionThunk(); // if innerResult worked, then throw if the completion does
43+
// eslint-disable-next-line no-useless-assignment
4244
completionThunk = null; // ensure it's not called twice.
4345

4446
if (!isObject(innerResult)) {

2016/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2017/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2018/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2019/AddEntriesFromIterable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = function AddEntriesFromIterable(target, iterable, adder) {
2323
throw new $TypeError('Assertion failed: `iterable` is present, and not nullish');
2424
}
2525
var iteratorRecord = GetIterator(iterable);
26-
while (true) { // eslint-disable-line no-constant-condition
26+
while (true) {
2727
var next = IteratorStep(iteratorRecord);
2828
if (!next) {
2929
return target;

2019/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2020/AddEntriesFromIterable.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2020/CreateRegExpStringIterator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if (IteratorPrototype) {
4242
}
4343

4444
var RegExpStringIteratorNext = function next() {
45-
var O = this; // eslint-disable-line no-invalid-this
45+
var O = this;
4646
if (!isObject(O)) {
4747
throw new $TypeError('receiver must be an object');
4848
}

2020/IteratorClose.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)