You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Priyanka Punukollu 267a7b1e4f Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
..
.github Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
test Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
.eslintrc Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
.nycrc Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
CHANGELOG.md Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
LICENSE Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
README.md Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
index.d.ts Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
index.js Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
package.json Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago
tsconfig.json Merge remote main into local — keep all agent feature files and Angular UI changes 1 month ago

README.md

is-finalizationregistry Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

Example

var isFinalizationRegistry = require('is-finalizationregistry');
assert(!isFinalizationRegistry(function () {}));
assert(!isFinalizationRegistry(null));
assert(!isFinalizationRegistry(function* () { yield 42; return Infinity; });
assert(!isFinalizationRegistry(Symbol('foo')));
assert(!isFinalizationRegistry(1n));
assert(!isFinalizationRegistry(Object(1n)));

assert(!isFinalizationRegistry(new Set()));
assert(!isFinalizationRegistry(new WeakSet()));
assert(!isFinalizationRegistry(new Map()));
assert(!isFinalizationRegistry(new WeakMap()));
assert(!isFinalizationRegistry(new WeakRef({})));

assert(isFinalizationRegistry(new FinalizationRegistry(function () {})));

class MyFinalizationRegistry extends FinalizationRegistry {}
assert(isFinalizationRegistry(new MyFinalizationRegistry(function () {})));

Tests

Simply clone the repo, npm install, and run npm test