astro-ghostcms/.pnpm-store/v3/files/d3/eaefc9c3eb5382e3c0c6dbd8fdc...

22 lines
469 B
Plaintext

'use strict';
var callBound = require('call-bind/callBound');
var $register = callBound('FinalizationRegistry.prototype.register', true);
module.exports = $register
? function isFinalizationRegistry(value) {
if (!value || typeof value !== 'object') {
return false;
}
try {
$register(value, {});
return true;
} catch (e) {
return false;
}
}
: function isFinalizationRegistry(value) { // eslint-disable-line no-unused-vars
return false;
};