@@ -59,15 +59,15 @@ typeof window !== 'undefined' && (function (window) {
5959 Object . defineProperty ( Object , 'assign' , {
6060 value : function assign ( target , varArgs ) { // .length of function is 2
6161 'use strict'
62- if ( target === null || target === undefined ) {
62+ if ( target === null || target === void 0 ) {
6363 throw new TypeError ( 'Cannot convert undefined or null to object' )
6464 }
6565
6666 var to = Object ( target )
6767
6868 for ( var index = 1 ; index < arguments . length ; index ++ ) {
6969 var nextSource = arguments [ index ]
70- if ( nextSource !== null && nextSource !== undefined ) {
70+ if ( nextSource !== null && nextSource !== void 0 ) {
7171 for ( var nextKey in nextSource ) {
7272 // Avoid bugs when hasOwnProperty is shadowed
7373 if ( Object . prototype . hasOwnProperty . call ( nextSource , nextKey ) ) {
@@ -302,7 +302,7 @@ function setAsap(asapFn) {
302302 asap = asapFn ;
303303}
304304
305- var browserWindow = typeof window !== 'undefined' ? window : undefined ;
305+ var browserWindow = typeof window !== 'undefined' ? window : void 0 ;
306306var browserGlobal = browserWindow || { } ;
307307var BrowserMutationObserver = browserGlobal . MutationObserver || browserGlobal . WebKitMutationObserver ;
308308var isNode = typeof self === 'undefined' && typeof process !== 'undefined' && { } . toString . call ( process ) === '[object process]' ;
@@ -367,8 +367,8 @@ function flush() {
367367
368368 callback ( arg ) ;
369369
370- queue [ i ] = undefined ;
371- queue [ i + 1 ] = undefined ;
370+ queue [ i ] = void 0 ;
371+ queue [ i + 1 ] = void 0 ;
372372 }
373373
374374 len = 0 ;
@@ -392,7 +392,7 @@ if (isNode) {
392392 scheduleFlush = useMutationObserver ( ) ;
393393} else if ( isWorker ) {
394394 scheduleFlush = useMessageChannel ( ) ;
395- } else if ( browserWindow === undefined && typeof require === 'function' ) {
395+ } else if ( browserWindow === void 0 && typeof require === 'function' ) {
396396 scheduleFlush = attemptVertx ( ) ;
397397} else {
398398 scheduleFlush = useSetTimeout ( ) ;
@@ -403,7 +403,7 @@ function then(onFulfillment, onRejection) {
403403
404404 var child = new this . constructor ( noop ) ;
405405
406- if ( child [ PROMISE_ID ] === undefined ) {
406+ if ( child [ PROMISE_ID ] === void 0 ) {
407407 makePromise ( child ) ;
408408 }
409409
@@ -536,7 +536,7 @@ function handleOwnThenable(promise, thenable) {
536536 } else if ( thenable . _state === REJECTED ) {
537537 reject ( promise , thenable . _result ) ;
538538 } else {
539- subscribe ( thenable , undefined , function ( value ) {
539+ subscribe ( thenable , void 0 , function ( value ) {
540540 return resolve ( promise , value ) ;
541541 } , function ( reason ) {
542542 return reject ( promise , reason ) ;
@@ -551,7 +551,7 @@ function handleMaybeThenable(promise, maybeThenable, then$$1) {
551551 if ( then$$1 === TRY_CATCH_ERROR ) {
552552 reject ( promise , TRY_CATCH_ERROR . error ) ;
553553 TRY_CATCH_ERROR . error = null ;
554- } else if ( then$$1 === undefined ) {
554+ } else if ( then$$1 === void 0 ) {
555555 fulfill ( promise , maybeThenable ) ;
556556 } else if ( isFunction ( then$$1 ) ) {
557557 handleForeignThenable ( promise , maybeThenable , then$$1 ) ;
@@ -712,8 +712,8 @@ function nextId() {
712712
713713function makePromise ( promise ) {
714714 promise [ PROMISE_ID ] = id ++ ;
715- promise . _state = undefined ;
716- promise . _result = undefined ;
715+ promise . _state = void 0 ;
716+ promise . _result = void 0 ;
717717 promise . _subscribers = [ ] ;
718718}
719719
@@ -805,7 +805,7 @@ var Enumerator = function () {
805805 Enumerator . prototype . _willSettleAt = function _willSettleAt ( promise , i ) {
806806 var enumerator = this ;
807807
808- subscribe ( promise , undefined , function ( value ) {
808+ subscribe ( promise , void 0 , function ( value ) {
809809 return enumerator . _settledAt ( FULFILLED , i , value ) ;
810810 } , function ( reason ) {
811811 return enumerator . _settledAt ( REJECTED , i , reason ) ;
@@ -1106,7 +1106,7 @@ function needsNew() {
11061106var Promise$2 = function ( ) {
11071107 function Promise ( resolver ) {
11081108 this [ PROMISE_ID ] = nextId ( ) ;
1109- this . _result = this . _state = undefined ;
1109+ this . _result = this . _state = void 0 ;
11101110 this . _subscribers = [ ] ;
11111111
11121112 if ( noop !== resolver ) {
0 commit comments