Update ESLint-related packages

[email protected]

No-Presubmit: True
Bug: none
Change-Id: I52dc24b12e350787085c5e3d131cface7ea87142
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3060705
Commit-Queue: Tim van der Lippe <[email protected]>
Reviewed-by: Paul Lewis <[email protected]>
diff --git a/node_modules/es-abstract/2015/AdvanceStringIndex.js b/node_modules/es-abstract/2015/AdvanceStringIndex.js
index 666f578..279602b 100644
--- a/node_modules/es-abstract/2015/AdvanceStringIndex.js
+++ b/node_modules/es-abstract/2015/AdvanceStringIndex.js
@@ -1,15 +1,17 @@
 'use strict';
 
-var GetIntrinsic = require('../GetIntrinsic');
+var GetIntrinsic = require('get-intrinsic');
 
 var IsInteger = require('./IsInteger');
 var Type = require('./Type');
 
 var MAX_SAFE_INTEGER = require('../helpers/maxSafeInteger');
+var isLeadingSurrogate = require('../helpers/isLeadingSurrogate');
+var isTrailingSurrogate = require('../helpers/isTrailingSurrogate');
 
 var $TypeError = GetIntrinsic('%TypeError%');
 
-var $charCodeAt = require('../helpers/callBound')('String.prototype.charCodeAt');
+var $charCodeAt = require('call-bind/callBound')('String.prototype.charCodeAt');
 
 // https://ecma-international.org/ecma-262/6.0/#sec-advancestringindex
 
@@ -32,12 +34,12 @@
 	}
 
 	var first = $charCodeAt(S, index);
-	if (first < 0xD800 || first > 0xDBFF) {
+	if (!isLeadingSurrogate(first)) {
 		return index + 1;
 	}
 
 	var second = $charCodeAt(S, index + 1);
-	if (second < 0xDC00 || second > 0xDFFF) {
+	if (!isTrailingSurrogate(second)) {
 		return index + 1;
 	}