This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-18 13:34:19 -03:00

22 lines
469 B
JavaScript

'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;
};