paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

21
node_modules/is-finalizationregistry/index.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
'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;
};