You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2023. It is now read-only.
* @param {boolean} [asyncOnly=true] - Wether to force `done` callback or promise.
2173
+
* @param {boolean} [asyncOnly=true] - Whether to force `done` callback or promise.
2174
2174
* @return {Mocha} this
2175
2175
* @chainable
2176
2176
*/
@@ -8677,7 +8677,7 @@ function alloc (size, fill, encoding) {
8677
8677
if (fill !== undefined) {
8678
8678
// Only pay attention to encoding if it's a string. This
8679
8679
// prevents accidentally sending in a number that would
8680
-
// be interpretted as a start offset.
8680
+
// be interpreted as a start offset.
8681
8681
return typeof encoding === 'string'
8682
8682
? createBuffer(size).fill(fill, encoding)
8683
8683
: createBuffer(size).fill(fill)
@@ -8969,7 +8969,7 @@ function slowToString (encoding, start, end) {
8969
8969
return ''
8970
8970
}
8971
8971
8972
-
// Force coersion to uint32. This will also coerce falsey/NaN values to 0.
8972
+
// Force coercion to uint32. This will also coerce falsey/NaN values to 0.
8973
8973
end >>>= 0
8974
8974
start >>>= 0
8975
8975
@@ -14499,7 +14499,7 @@ function defaultClearTimeout () {
14499
14499
} ())
14500
14500
function runTimeout(fun) {
14501
14501
if (cachedSetTimeout === setTimeout) {
14502
-
//normal enviroments in sane situations
14502
+
//normal environments in sane situations
14503
14503
return setTimeout(fun, 0);
14504
14504
}
14505
14505
// if setTimeout wasn't available but was latter defined
@@ -14508,14 +14508,14 @@ function runTimeout(fun) {
14508
14508
return setTimeout(fun, 0);
14509
14509
}
14510
14510
try {
14511
-
// when when somebody has screwed with setTimeout but no I.E. maddness
14511
+
// when when somebody has screwed with setTimeout but no I.E. madness
14512
14512
return cachedSetTimeout(fun, 0);
14513
14513
} catch(e){
14514
14514
try {
14515
14515
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
14516
14516
return cachedSetTimeout.call(null, fun, 0);
14517
14517
} catch(e){
14518
-
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
14518
+
// same as above but when it's a version of I.E. that must have the global object for 'this', hopefully our context correct otherwise it will throw a global error
14519
14519
return cachedSetTimeout.call(this, fun, 0);
14520
14520
}
14521
14521
}
@@ -14524,7 +14524,7 @@ function runTimeout(fun) {
14524
14524
}
14525
14525
function runClearTimeout(marker) {
14526
14526
if (cachedClearTimeout === clearTimeout) {
14527
-
//normal enviroments in sane situations
14527
+
//normal environments in sane situations
14528
14528
return clearTimeout(marker);
14529
14529
}
14530
14530
// if clearTimeout wasn't available but was latter defined
@@ -14533,14 +14533,14 @@ function runClearTimeout(marker) {
14533
14533
return clearTimeout(marker);
14534
14534
}
14535
14535
try {
14536
-
// when when somebody has screwed with setTimeout but no I.E. maddness
14536
+
// when when somebody has screwed with setTimeout but no I.E. madness
14537
14537
return cachedClearTimeout(marker);
14538
14538
} catch (e){
14539
14539
try {
14540
14540
// When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
14541
14541
return cachedClearTimeout.call(null, marker);
14542
14542
} catch (e){
14543
-
// same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
14543
+
// same as above but when it's a version of I.E. that must have the global object for 'this', hopefully our context correct otherwise it will throw a global error.
14544
14544
// Some versions of I.E. have different rules for clearTimeout vs setTimeout
14545
14545
return cachedClearTimeout.call(this, marker);
14546
14546
}
@@ -14606,7 +14606,7 @@ process.nextTick = function (fun) {
0 commit comments