@locker/near-membrane-shared
Advanced tools
Comparing version 0.13.7 to 0.13.8
@@ -123,3 +123,3 @@ declare const ArrayCtor: ArrayConstructor; | ||
declare const SetCtor: SetConstructor; | ||
declare const SetProtoAdd: (value: any) => Set<any>, SetProtoValues: () => IterableIterator<any>; | ||
declare const SetProtoAdd: (value: any) => Set<any>, SetProtoHas: (value: any) => boolean, SetProtoValues: () => IterableIterator<any>; | ||
declare const SetProtoSizeGetter: Getter; | ||
@@ -136,3 +136,3 @@ declare const StringCtor: StringConstructor; | ||
declare function toSafeWeakSet<T extends WeakSet<any>>(weakSet: T): T; | ||
export { ArrayCtor, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayIsArray, toSafeArray, ArrayBufferProtoByteLengthGetter, getBrand, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, CHAR_ELLIPSIS, ERR_ILLEGAL_PROPERTY_ACCESS, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, SYMBOL_LIVE_OBJECT, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, DateProtoValueOf, ErrorCtor, TypeErrorCtor, noop, JSONParse, JSONStringify, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectKeys, ObjectProto, ObjectHasOwn, ObjectProtoToString, isObject, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoTest, RegExpProtoSourceGetter, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoValueOf, Getter, NearMembraneSerializedValue, ProxyTarget, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
export { ArrayCtor, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayIsArray, toSafeArray, ArrayBufferProtoByteLengthGetter, getBrand, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, CHAR_ELLIPSIS, ERR_ILLEGAL_PROPERTY_ACCESS, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, SYMBOL_LIVE_OBJECT, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, DateProtoValueOf, ErrorCtor, TypeErrorCtor, noop, JSONParse, JSONStringify, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectKeys, ObjectProto, ObjectHasOwn, ObjectProtoToString, isObject, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoTest, RegExpProtoSourceGetter, SetCtor, SetProtoAdd, SetProtoHas, SetProtoValues, SetProtoSizeGetter, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoValueOf, Getter, NearMembraneSerializedValue, ProxyTarget, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
//# sourceMappingURL=index.cjs.d.ts.map |
@@ -266,2 +266,3 @@ 'use strict'; | ||
add: SetProtoAdd, | ||
has: SetProtoHas, | ||
values: SetProtoValues | ||
@@ -881,2 +882,3 @@ } = SetProto; | ||
exports.SetProtoAdd = SetProtoAdd; | ||
exports.SetProtoHas = SetProtoHas; | ||
exports.SetProtoSizeGetter = SetProtoSizeGetter; | ||
@@ -883,0 +885,0 @@ exports.SetProtoValues = SetProtoValues; |
@@ -123,3 +123,3 @@ declare const ArrayCtor: ArrayConstructor; | ||
declare const SetCtor: SetConstructor; | ||
declare const SetProtoAdd: (value: any) => Set<any>, SetProtoValues: () => IterableIterator<any>; | ||
declare const SetProtoAdd: (value: any) => Set<any>, SetProtoHas: (value: any) => boolean, SetProtoValues: () => IterableIterator<any>; | ||
declare const SetProtoSizeGetter: Getter; | ||
@@ -136,3 +136,3 @@ declare const StringCtor: StringConstructor; | ||
declare function toSafeWeakSet<T extends WeakSet<any>>(weakSet: T): T; | ||
export { ArrayCtor, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayIsArray, toSafeArray, ArrayBufferProtoByteLengthGetter, getBrand, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, CHAR_ELLIPSIS, ERR_ILLEGAL_PROPERTY_ACCESS, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, SYMBOL_LIVE_OBJECT, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, DateProtoValueOf, ErrorCtor, TypeErrorCtor, noop, JSONParse, JSONStringify, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectKeys, ObjectProto, ObjectHasOwn, ObjectProtoToString, isObject, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoTest, RegExpProtoSourceGetter, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoValueOf, Getter, NearMembraneSerializedValue, ProxyTarget, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
export { ArrayCtor, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayIsArray, toSafeArray, ArrayBufferProtoByteLengthGetter, getBrand, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, CHAR_ELLIPSIS, ERR_ILLEGAL_PROPERTY_ACCESS, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, SYMBOL_LIVE_OBJECT, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, DateProtoValueOf, ErrorCtor, TypeErrorCtor, noop, JSONParse, JSONStringify, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectKeys, ObjectProto, ObjectHasOwn, ObjectProtoToString, isObject, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoTest, RegExpProtoSourceGetter, SetCtor, SetProtoAdd, SetProtoHas, SetProtoValues, SetProtoSizeGetter, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoValueOf, Getter, NearMembraneSerializedValue, ProxyTarget, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
//# sourceMappingURL=index.mjs.d.ts.map |
@@ -264,2 +264,3 @@ const { | ||
add: SetProtoAdd, | ||
has: SetProtoHas, | ||
values: SetProtoValues | ||
@@ -821,2 +822,2 @@ } = SetProto; | ||
const ProxyCtor = Proxy; | ||
export { ArrayBufferProtoByteLengthGetter, ArrayCtor, ArrayIsArray, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSort, ArrayProtoSplice, ArrayProtoUnshift, BigIntProtoValueOf, BooleanProtoValueOf, CHAR_ELLIPSIS, DateProtoValueOf, ERR_ILLEGAL_PROPERTY_ACCESS, ErrorCtor, JSONParse, JSONStringify, LOCKER_IDENTIFIER_MARKER, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_UNMINIFIED_FLAG, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, MathMin, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectAssign, ObjectCtor, ObjectFreeze, ObjectHasOwn, ObjectKeys, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectProto, ObjectProtoToString, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoSourceGetter, RegExpProtoTest, SUPPORTS_BIG_INT, SYMBOL_LIVE_OBJECT, SetCtor, SetProtoAdd, SetProtoSizeGetter, SetProtoValues, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolProtoValueOf, SymbolToStringTag, SymbolUnscopables, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, TypeErrorCtor, WeakMapCtor, WeakMapProtoHas, WeakSetCtor, WeakSetProtoHas, getBrand, getNearMembraneProxySerializedValue, isNearMembraneProxy, isObject, noop, partialStructuredClone, toSafeArray, toSafeMap, toSafeWeakMap, toSafeWeakSet }; | ||
export { ArrayBufferProtoByteLengthGetter, ArrayCtor, ArrayIsArray, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIncludes, ArrayProtoIndexOf, ArrayProtoMap, ArrayProtoPush, ArrayProtoShift, ArrayProtoSort, ArrayProtoSplice, ArrayProtoUnshift, BigIntProtoValueOf, BooleanProtoValueOf, CHAR_ELLIPSIS, DateProtoValueOf, ERR_ILLEGAL_PROPERTY_ACCESS, ErrorCtor, JSONParse, JSONStringify, LOCKER_IDENTIFIER_MARKER, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_UNMINIFIED_FLAG, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, MathMin, NumberCtor, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoValueOf, ObjectAssign, ObjectCtor, ObjectFreeze, ObjectHasOwn, ObjectKeys, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectProto, ObjectProtoToString, ProxyCtor, ReflectApply, ReflectDefineProperty, ReflectDeleteProperty, ReflectGetPrototypeOf, ReflectOwnKeys, ReflectSetPrototypeOf, RegExpCtor, RegExpProtoSourceGetter, RegExpProtoTest, SUPPORTS_BIG_INT, SYMBOL_LIVE_OBJECT, SetCtor, SetProtoAdd, SetProtoHas, SetProtoSizeGetter, SetProtoValues, StringCtor, StringProtoSlice, StringProtoValueOf, SymbolFor, SymbolIterator, SymbolProtoValueOf, SymbolToStringTag, SymbolUnscopables, TO_STRING_BRAND_ARRAY, TO_STRING_BRAND_ARRAY_BUFFER, TO_STRING_BRAND_BIG_INT, TO_STRING_BRAND_BOOLEAN, TO_STRING_BRAND_DATE, TO_STRING_BRAND_FUNCTION, TO_STRING_BRAND_MAP, TO_STRING_BRAND_NULL, TO_STRING_BRAND_NUMBER, TO_STRING_BRAND_OBJECT, TO_STRING_BRAND_REG_EXP, TO_STRING_BRAND_SET, TO_STRING_BRAND_STRING, TO_STRING_BRAND_SYMBOL, TO_STRING_BRAND_UNDEFINED, TO_STRING_BRAND_WEAK_MAP, TO_STRING_BRAND_WEAK_SET, TypeErrorCtor, WeakMapCtor, WeakMapProtoHas, WeakSetCtor, WeakSetProtoHas, getBrand, getNearMembraneProxySerializedValue, isNearMembraneProxy, isObject, noop, partialStructuredClone, toSafeArray, toSafeMap, toSafeWeakMap, toSafeWeakSet }; |
{ | ||
"name": "@locker/near-membrane-shared", | ||
"version": "0.13.7", | ||
"version": "0.13.8", | ||
"repository": { | ||
@@ -26,3 +26,3 @@ "type": "git", | ||
}, | ||
"gitHead": "82558810e55bd350fb13096ce8cf70abb33216b4" | ||
"gitHead": "90d8de993709fead1a02352d3b5e19c5d26d550b" | ||
} |
93192
2031