Skip to content

Commit

Permalink
Update precompiled
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Jun 22, 2021
1 parent 6e3aa04 commit 37310d1
Showing 1 changed file with 88 additions and 32 deletions.
120 changes: 88 additions & 32 deletions packages/next/compiled/webpack/bundle4.js
Original file line number Diff line number Diff line change
Expand Up @@ -40466,7 +40466,7 @@ module.exports = isAccessorDescriptor;
/***/ 1057:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isBuffer = __webpack_require__(72195);
var isBuffer = __webpack_require__(9848);
var toString = Object.prototype.toString;

/**
Expand Down Expand Up @@ -40584,6 +40584,34 @@ module.exports = function kindOf(val) {
};


/***/ }),

/***/ 9848:
/***/ (function(module) {

/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

// The _isBuffer check is for Safari 5-7 support, because it's missing
// Object.prototype.constructor. Remove this eventually
module.exports = function (obj) {
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
}

function isBuffer (obj) {
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}

// For Node v0.10 support. Remove this eventually.
function isSlowBuffer (obj) {
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
}


/***/ }),

/***/ 54963:
Expand Down Expand Up @@ -40652,7 +40680,7 @@ module.exports = isDataDescriptor;
/***/ 31072:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isBuffer = __webpack_require__(72195);
var isBuffer = __webpack_require__(9848);
var toString = Object.prototype.toString;

/**
Expand Down Expand Up @@ -49527,12 +49555,40 @@ module.exports = function hasValue(val) {
};


/***/ }),

/***/ 93293:
/***/ (function(module) {

/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

// The _isBuffer check is for Safari 5-7 support, because it's missing
// Object.prototype.constructor. Remove this eventually
module.exports = function (obj) {
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
}

function isBuffer (obj) {
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}

// For Node v0.10 support. Remove this eventually.
function isSlowBuffer (obj) {
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
}


/***/ }),

/***/ 54329:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isBuffer = __webpack_require__(72195);
var isBuffer = __webpack_require__(93293);
var toString = Object.prototype.toString;

/**
Expand Down Expand Up @@ -49916,34 +49972,6 @@ function isBuffer(val) {
}


/***/ }),

/***/ 72195:
/***/ (function(module) {

/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

// The _isBuffer check is for Safari 5-7 support, because it's missing
// Object.prototype.constructor. Remove this eventually
module.exports = function (obj) {
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
}

function isBuffer (obj) {
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}

// For Node v0.10 support. Remove this eventually.
function isSlowBuffer (obj) {
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
}


/***/ }),

/***/ 74194:
Expand Down Expand Up @@ -50579,7 +50607,7 @@ function escapeJsonPtr(str) {
/***/ 48865:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isBuffer = __webpack_require__(72195);
var isBuffer = __webpack_require__(45408);
var toString = Object.prototype.toString;

/**
Expand Down Expand Up @@ -50697,6 +50725,34 @@ module.exports = function kindOf(val) {
};


/***/ }),

/***/ 45408:
/***/ (function(module) {

/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

// The _isBuffer check is for Safari 5-7 support, because it's missing
// Object.prototype.constructor. Remove this eventually
module.exports = function (obj) {
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
}

function isBuffer (obj) {
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}

// For Node v0.10 support. Remove this eventually.
function isSlowBuffer (obj) {
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
}


/***/ }),

/***/ 99736:
Expand Down

0 comments on commit 37310d1

Please sign in to comment.