@startupjs/signals
Advanced tools
Comparing version 0.54.1 to 0.54.5
{ | ||
"name": "@startupjs/signals", | ||
"version": "0.54.1", | ||
"version": "0.54.5", | ||
"description": "Signals with an ORM support", | ||
@@ -17,3 +17,3 @@ "type": "module", | ||
"license": "MIT", | ||
"gitHead": "e9788c7b41bcb0fcc85840e951b97c727169462a" | ||
"gitHead": "6d8017aefd917f303e3b39f0494521b96328878d" | ||
} |
@@ -1,4 +0,5 @@ | ||
/* global FinalizationRegistry, WeakRef */ | ||
/* global WeakRef */ | ||
import handlers from './handlers.js' | ||
import { getRootModel } from './model.js' | ||
import { UniversalFinalizationRegistry } from './utils/UniversalFinalizationRegistry' | ||
@@ -22,3 +23,3 @@ export const SEGMENTS = Symbol('path segments') | ||
export const __DEBUG_SIGNALS_CACHE__ = signalsCache | ||
const signalsFinalizationRegistry = new FinalizationRegistry(hash => signalsCache.delete(hash)) | ||
const signalsFinalizationRegistry = new UniversalFinalizationRegistry(hash => signalsCache.delete(hash)) | ||
@@ -25,0 +26,0 @@ export function getSignal (segments = [], parentProxyTarget) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14489
9
365