@locker/shared
Advanced tools
Comparing version 0.20.0 to 0.20.1
declare const ArrayCtor: ArrayConstructor; | ||
// Used by '@locker/near-membrane-dom'. | ||
declare const ArrayProtoIncludes: (searchElement: any, fromIndex?: number | undefined) => boolean, ArrayProtoSort: (compareFn?: ((a: any, b: any) => number) | undefined) => any[], ArrayProtoUnshift: (...items: any[]) => number; | ||
declare const ArrayProtoIncludes: (searchElement: any, fromIndex?: number | undefined) => boolean, ArrayProtoMap: <U>(callbackfn: (value: any, index: number, array: any[]) => U, thisArg?: any) => U[], ArrayProtoSplice: { | ||
(start: number, deleteCount?: number | undefined): any[]; | ||
(start: number, deleteCount: number, ...items: any[]): any[]; | ||
}, ArrayProtoSort: (compareFn?: ((a: any, b: any) => number) | undefined) => any[], ArrayProtoUnshift: (...items: any[]) => number; | ||
declare const ArrayProtoFilter: { | ||
@@ -8,3 +11,3 @@ <S extends any>(predicate: (value: any, index: number, array: any[]) => value is S, thisArg?: any): S[]; | ||
}, ArrayProtoFind: { | ||
<S extends any>(predicate: (this: void, value: any, index: number, obj: any[]) => value is S, thisArg?: any): S | undefined; | ||
<S extends any>(predicate: (value: any, index: number, obj: any[]) => value is S, thisArg?: any): S | undefined; | ||
(predicate: (value: any, index: number, obj: any[]) => unknown, thisArg?: any): any; | ||
@@ -206,3 +209,3 @@ }, ArrayProtoIndexOf: (searchElement: any, fromIndex?: number | undefined) => number, ArrayProtoJoin: (separator?: string | undefined) => string, ArrayProtoPush: (...items: any[]) => number, ArrayProtoShift: () => any, ArrayProtoSlice: (start?: number | undefined, end?: number | undefined) => any[], ArrayProtoToString: () => string; | ||
// Used by '@locker/near-membrane-dom'. | ||
declare const NumberIsFinite: (number: unknown) => boolean, NumberIsInteger: (number: unknown) => boolean; | ||
declare const NumberIsFinite: (number: unknown) => boolean, NumberIsInteger: (number: unknown) => boolean, NumberIsNaN: (number: unknown) => boolean; | ||
declare const NumberProtoToFixed: (fractionDigits?: number | undefined) => string, NumberProtoValueOf: () => number; | ||
@@ -259,3 +262,3 @@ declare const ObjectCtor: ObjectConstructor; | ||
declare const StringCtor: StringConstructor; | ||
declare const StringProtoEndsWith: (searchString: string, endPosition?: number | undefined) => boolean, StringProtoIncludes: (searchString: string, position?: number | undefined) => boolean, StringProtoIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoLastIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoMatch: { | ||
declare const StringProtoCharAt: (pos: number) => string, StringProtoCharCodeAt: (index: number) => number, StringProtoEndsWith: (searchString: string, endPosition?: number | undefined) => boolean, StringProtoIncludes: (searchString: string, position?: number | undefined) => boolean, StringProtoIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoLastIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoMatch: { | ||
(regexp: string | RegExp): RegExpMatchArray | null; | ||
@@ -279,3 +282,3 @@ (matcher: { | ||
}, limit?: number | undefined): string[]; | ||
}, StringProtoStartsWith: (searchString: string, position?: number | undefined) => boolean, StringProtoToLowerCase: () => string, StringProtoToUpperCase: () => string, StringProtoValueOf: () => string; | ||
}, StringProtoStartsWith: (searchString: string, position?: number | undefined) => boolean, StringProtoSubstring: (start: number, end?: number | undefined) => string, StringProtoToLowerCase: () => string, StringProtoToUpperCase: () => string, StringProtoValueOf: () => string; | ||
declare function capitalizeFirstChar(string: string): string; | ||
@@ -300,2 +303,2 @@ declare function enquote(string: string, quoteChar?: string): string; | ||
declare function toSafeWeakSet<T extends WeakSet<any>>(weakSet: T): T; | ||
export { ArrayCtor, ArrayProtoIncludes, ArrayProtoSort, ArrayProtoUnshift, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIndexOf, ArrayProtoJoin, ArrayProtoPush, ArrayProtoShift, ArrayProtoSlice, ArrayProtoToString, ArrayIsArray, ArrayConcat, toSafeArray, ArrayBufferIsView, ArrayBufferProtoByteLengthGetter, getBrand, getTimestamp, indexOfPragma, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, shallowCloneArray, shallowCloneOptions, consoleWarn, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, LOCKER_SERVICE_KEY, LOCKER_SERVICE_KEY_LOWERED, CHAR_QUOTE_DOUBLE, CHAR_QUOTE_SINGLE, UNCOMPILED_LOCATION_NAME, UNCOMPILED_TOP_NAME, WEBPACK_REQUIRE_NAME, ERR_ILLEGAL_PROPERTY_ACCESS, ERR_INVALID_SANDBOX_KEY, LOCKER_NEAR_MEMBRANE_IS_MASKED_SYMBOL, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_NEAR_MEMBRANE_UNMASKED_VALUE_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_ERROR, 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, SANDBOX_EVAL_CONTEXT_NAME, SANDBOX_EVAL_HELPERS_NAME, DateNow, DateProtoValueOf, ErrorCtor, TypeErrorCtor, LockerSecurityError, FunctionProtoBind, FunctionProtoToString, createUnmaskableTraps, getUnmaskedFunction, identity, isMaskedFunction, maskFunction, noop, JSONParse, JSONStringify, isTargetLive, markTargetAsLive, trackAsLiveTarget, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNamespaceMarker, getStorageNamespaceMarker, prependNamespaceMarker, prependStorageNamespaceMarker, removeNamespaceMarker, removeStorageNamespaceMarker, startsWithNamespaceMarker, startsWithStorageNamespaceMarker, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberIsFinite, NumberIsInteger, NumberProtoToFixed, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectDefineProperties, ObjectGetOwnPropertyDescriptors, ObjectGetOwnPropertySymbols, ObjectKeys, ObjectPreventExtensions, ObjectProto, ObjectProtoToString, isObject, isObjectLike, ObjectHasOwn, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectLookupOwnValue, PromiseCtor, PromiseProtoCatch, PromiseProtoThen, PromiseResolve, PromiseReject, ProxyCtor, createRevokedProxy, isRevokedProxy, ReflectApply, ReflectConstruct, ReflectDefineProperty, ReflectDeleteProperty, ReflectGet, ReflectGetOwnPropertyDescriptor, ReflectGetPrototypeOf, ReflectHas, ReflectIsExtensible, ReflectOwnKeys, ReflectPreventExtensions, ReflectSet, ReflectSetPrototypeOf, RegExpCtor, RegExpProto, RegExpProtoExec, RegExpProtoTest, RegExpProtoSourceGetter, toRegExpEscapedIdentifierName, toRegExpEscapedString, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, toSafeSet, StringCtor, StringProtoEndsWith, StringProtoIncludes, StringProtoIndexOf, StringProtoLastIndexOf, StringProtoMatch, StringProtoReplace, StringProtoSlice, StringProtoSplit, StringProtoStartsWith, StringProtoToLowerCase, StringProtoToUpperCase, StringProtoValueOf, capitalizeFirstChar, enquote, extractFunctionBodySource, isConvertibleToString, toString, toSafeTemplateStringValue, SymbolAsyncIterator, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoToString, SymbolProtoValueOf, Getter, GetterSetterDescriptor, NearMembraneSerializedValue, ProxyHandlerTraps, ProxyTarget, ProxyTrapInvokers, SandboxKey, SandboxRecord, SandboxType, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
export { ArrayCtor, ArrayProtoIncludes, ArrayProtoMap, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIndexOf, ArrayProtoJoin, ArrayProtoPush, ArrayProtoShift, ArrayProtoSlice, ArrayProtoToString, ArrayIsArray, ArrayConcat, toSafeArray, ArrayBufferIsView, ArrayBufferProtoByteLengthGetter, getBrand, getTimestamp, indexOfPragma, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, shallowCloneArray, shallowCloneOptions, consoleWarn, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, LOCKER_SERVICE_KEY, LOCKER_SERVICE_KEY_LOWERED, CHAR_QUOTE_DOUBLE, CHAR_QUOTE_SINGLE, UNCOMPILED_LOCATION_NAME, UNCOMPILED_TOP_NAME, WEBPACK_REQUIRE_NAME, ERR_ILLEGAL_PROPERTY_ACCESS, ERR_INVALID_SANDBOX_KEY, LOCKER_NEAR_MEMBRANE_IS_MASKED_SYMBOL, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_NEAR_MEMBRANE_UNMASKED_VALUE_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_ERROR, 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, SANDBOX_EVAL_CONTEXT_NAME, SANDBOX_EVAL_HELPERS_NAME, DateNow, DateProtoValueOf, ErrorCtor, TypeErrorCtor, LockerSecurityError, FunctionProtoBind, FunctionProtoToString, createUnmaskableTraps, getUnmaskedFunction, identity, isMaskedFunction, maskFunction, noop, JSONParse, JSONStringify, isTargetLive, markTargetAsLive, trackAsLiveTarget, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNamespaceMarker, getStorageNamespaceMarker, prependNamespaceMarker, prependStorageNamespaceMarker, removeNamespaceMarker, removeStorageNamespaceMarker, startsWithNamespaceMarker, startsWithStorageNamespaceMarker, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoToFixed, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectDefineProperties, ObjectGetOwnPropertyDescriptors, ObjectGetOwnPropertySymbols, ObjectKeys, ObjectPreventExtensions, ObjectProto, ObjectProtoToString, isObject, isObjectLike, ObjectHasOwn, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectLookupOwnValue, PromiseCtor, PromiseProtoCatch, PromiseProtoThen, PromiseResolve, PromiseReject, ProxyCtor, createRevokedProxy, isRevokedProxy, ReflectApply, ReflectConstruct, ReflectDefineProperty, ReflectDeleteProperty, ReflectGet, ReflectGetOwnPropertyDescriptor, ReflectGetPrototypeOf, ReflectHas, ReflectIsExtensible, ReflectOwnKeys, ReflectPreventExtensions, ReflectSet, ReflectSetPrototypeOf, RegExpCtor, RegExpProto, RegExpProtoExec, RegExpProtoTest, RegExpProtoSourceGetter, toRegExpEscapedIdentifierName, toRegExpEscapedString, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, toSafeSet, StringCtor, StringProtoCharAt, StringProtoCharCodeAt, StringProtoEndsWith, StringProtoIncludes, StringProtoIndexOf, StringProtoLastIndexOf, StringProtoMatch, StringProtoReplace, StringProtoSlice, StringProtoSplit, StringProtoStartsWith, StringProtoSubstring, StringProtoToLowerCase, StringProtoToUpperCase, StringProtoValueOf, capitalizeFirstChar, enquote, extractFunctionBodySource, isConvertibleToString, toString, toSafeTemplateStringValue, SymbolAsyncIterator, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoToString, SymbolProtoValueOf, Getter, GetterSetterDescriptor, NearMembraneSerializedValue, ProxyHandlerTraps, ProxyTarget, ProxyTrapInvokers, SandboxKey, SandboxRecord, SandboxType, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; |
declare const ArrayCtor: ArrayConstructor; | ||
// Used by '@locker/near-membrane-dom'. | ||
declare const ArrayProtoIncludes: (searchElement: any, fromIndex?: number | undefined) => boolean, ArrayProtoSort: (compareFn?: ((a: any, b: any) => number) | undefined) => any[], ArrayProtoUnshift: (...items: any[]) => number; | ||
declare const ArrayProtoIncludes: (searchElement: any, fromIndex?: number | undefined) => boolean, ArrayProtoMap: <U>(callbackfn: (value: any, index: number, array: any[]) => U, thisArg?: any) => U[], ArrayProtoSplice: { | ||
(start: number, deleteCount?: number | undefined): any[]; | ||
(start: number, deleteCount: number, ...items: any[]): any[]; | ||
}, ArrayProtoSort: (compareFn?: ((a: any, b: any) => number) | undefined) => any[], ArrayProtoUnshift: (...items: any[]) => number; | ||
declare const ArrayProtoFilter: { | ||
@@ -8,3 +11,3 @@ <S extends any>(predicate: (value: any, index: number, array: any[]) => value is S, thisArg?: any): S[]; | ||
}, ArrayProtoFind: { | ||
<S extends any>(predicate: (this: void, value: any, index: number, obj: any[]) => value is S, thisArg?: any): S | undefined; | ||
<S extends any>(predicate: (value: any, index: number, obj: any[]) => value is S, thisArg?: any): S | undefined; | ||
(predicate: (value: any, index: number, obj: any[]) => unknown, thisArg?: any): any; | ||
@@ -206,3 +209,3 @@ }, ArrayProtoIndexOf: (searchElement: any, fromIndex?: number | undefined) => number, ArrayProtoJoin: (separator?: string | undefined) => string, ArrayProtoPush: (...items: any[]) => number, ArrayProtoShift: () => any, ArrayProtoSlice: (start?: number | undefined, end?: number | undefined) => any[], ArrayProtoToString: () => string; | ||
// Used by '@locker/near-membrane-dom'. | ||
declare const NumberIsFinite: (number: unknown) => boolean, NumberIsInteger: (number: unknown) => boolean; | ||
declare const NumberIsFinite: (number: unknown) => boolean, NumberIsInteger: (number: unknown) => boolean, NumberIsNaN: (number: unknown) => boolean; | ||
declare const NumberProtoToFixed: (fractionDigits?: number | undefined) => string, NumberProtoValueOf: () => number; | ||
@@ -259,3 +262,3 @@ declare const ObjectCtor: ObjectConstructor; | ||
declare const StringCtor: StringConstructor; | ||
declare const StringProtoEndsWith: (searchString: string, endPosition?: number | undefined) => boolean, StringProtoIncludes: (searchString: string, position?: number | undefined) => boolean, StringProtoIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoLastIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoMatch: { | ||
declare const StringProtoCharAt: (pos: number) => string, StringProtoCharCodeAt: (index: number) => number, StringProtoEndsWith: (searchString: string, endPosition?: number | undefined) => boolean, StringProtoIncludes: (searchString: string, position?: number | undefined) => boolean, StringProtoIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoLastIndexOf: (searchString: string, position?: number | undefined) => number, StringProtoMatch: { | ||
(regexp: string | RegExp): RegExpMatchArray | null; | ||
@@ -279,3 +282,3 @@ (matcher: { | ||
}, limit?: number | undefined): string[]; | ||
}, StringProtoStartsWith: (searchString: string, position?: number | undefined) => boolean, StringProtoToLowerCase: () => string, StringProtoToUpperCase: () => string, StringProtoValueOf: () => string; | ||
}, StringProtoStartsWith: (searchString: string, position?: number | undefined) => boolean, StringProtoSubstring: (start: number, end?: number | undefined) => string, StringProtoToLowerCase: () => string, StringProtoToUpperCase: () => string, StringProtoValueOf: () => string; | ||
declare function capitalizeFirstChar(string: string): string; | ||
@@ -300,2 +303,2 @@ declare function enquote(string: string, quoteChar?: string): string; | ||
declare function toSafeWeakSet<T extends WeakSet<any>>(weakSet: T): T; | ||
export { ArrayCtor, ArrayProtoIncludes, ArrayProtoSort, ArrayProtoUnshift, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIndexOf, ArrayProtoJoin, ArrayProtoPush, ArrayProtoShift, ArrayProtoSlice, ArrayProtoToString, ArrayIsArray, ArrayConcat, toSafeArray, ArrayBufferIsView, ArrayBufferProtoByteLengthGetter, getBrand, getTimestamp, indexOfPragma, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, shallowCloneArray, shallowCloneOptions, consoleWarn, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, LOCKER_SERVICE_KEY, LOCKER_SERVICE_KEY_LOWERED, CHAR_QUOTE_DOUBLE, CHAR_QUOTE_SINGLE, UNCOMPILED_LOCATION_NAME, UNCOMPILED_TOP_NAME, WEBPACK_REQUIRE_NAME, ERR_ILLEGAL_PROPERTY_ACCESS, ERR_INVALID_SANDBOX_KEY, LOCKER_NEAR_MEMBRANE_IS_MASKED_SYMBOL, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_NEAR_MEMBRANE_UNMASKED_VALUE_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_ERROR, 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, SANDBOX_EVAL_CONTEXT_NAME, SANDBOX_EVAL_HELPERS_NAME, DateNow, DateProtoValueOf, ErrorCtor, TypeErrorCtor, LockerSecurityError, FunctionProtoBind, FunctionProtoToString, createUnmaskableTraps, getUnmaskedFunction, identity, isMaskedFunction, maskFunction, noop, JSONParse, JSONStringify, isTargetLive, markTargetAsLive, trackAsLiveTarget, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNamespaceMarker, getStorageNamespaceMarker, prependNamespaceMarker, prependStorageNamespaceMarker, removeNamespaceMarker, removeStorageNamespaceMarker, startsWithNamespaceMarker, startsWithStorageNamespaceMarker, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberIsFinite, NumberIsInteger, NumberProtoToFixed, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectDefineProperties, ObjectGetOwnPropertyDescriptors, ObjectGetOwnPropertySymbols, ObjectKeys, ObjectPreventExtensions, ObjectProto, ObjectProtoToString, isObject, isObjectLike, ObjectHasOwn, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectLookupOwnValue, PromiseCtor, PromiseProtoCatch, PromiseProtoThen, PromiseResolve, PromiseReject, ProxyCtor, createRevokedProxy, isRevokedProxy, ReflectApply, ReflectConstruct, ReflectDefineProperty, ReflectDeleteProperty, ReflectGet, ReflectGetOwnPropertyDescriptor, ReflectGetPrototypeOf, ReflectHas, ReflectIsExtensible, ReflectOwnKeys, ReflectPreventExtensions, ReflectSet, ReflectSetPrototypeOf, RegExpCtor, RegExpProto, RegExpProtoExec, RegExpProtoTest, RegExpProtoSourceGetter, toRegExpEscapedIdentifierName, toRegExpEscapedString, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, toSafeSet, StringCtor, StringProtoEndsWith, StringProtoIncludes, StringProtoIndexOf, StringProtoLastIndexOf, StringProtoMatch, StringProtoReplace, StringProtoSlice, StringProtoSplit, StringProtoStartsWith, StringProtoToLowerCase, StringProtoToUpperCase, StringProtoValueOf, capitalizeFirstChar, enquote, extractFunctionBodySource, isConvertibleToString, toString, toSafeTemplateStringValue, SymbolAsyncIterator, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoToString, SymbolProtoValueOf, Getter, GetterSetterDescriptor, NearMembraneSerializedValue, ProxyHandlerTraps, ProxyTarget, ProxyTrapInvokers, SandboxKey, SandboxRecord, SandboxType, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; | ||
export { ArrayCtor, ArrayProtoIncludes, ArrayProtoMap, ArrayProtoSplice, ArrayProtoSort, ArrayProtoUnshift, ArrayProtoFilter, ArrayProtoFind, ArrayProtoIndexOf, ArrayProtoJoin, ArrayProtoPush, ArrayProtoShift, ArrayProtoSlice, ArrayProtoToString, ArrayIsArray, ArrayConcat, toSafeArray, ArrayBufferIsView, ArrayBufferProtoByteLengthGetter, getBrand, getTimestamp, indexOfPragma, SUPPORTS_BIG_INT, BigIntProtoValueOf, BooleanProtoValueOf, partialStructuredClone, shallowCloneArray, shallowCloneOptions, consoleWarn, LOCKER_IDENTIFIER_MARKER, LOCKER_UNMINIFIED_FLAG, LOCKER_SERVICE_KEY, LOCKER_SERVICE_KEY_LOWERED, CHAR_QUOTE_DOUBLE, CHAR_QUOTE_SINGLE, UNCOMPILED_LOCATION_NAME, UNCOMPILED_TOP_NAME, WEBPACK_REQUIRE_NAME, ERR_ILLEGAL_PROPERTY_ACCESS, ERR_INVALID_SANDBOX_KEY, LOCKER_NEAR_MEMBRANE_IS_MASKED_SYMBOL, LOCKER_NEAR_MEMBRANE_SERIALIZED_VALUE_SYMBOL, LOCKER_NEAR_MEMBRANE_SYMBOL, LOCKER_NEAR_MEMBRANE_UNMASKED_VALUE_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_ERROR, 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, SANDBOX_EVAL_CONTEXT_NAME, SANDBOX_EVAL_HELPERS_NAME, DateNow, DateProtoValueOf, ErrorCtor, TypeErrorCtor, LockerSecurityError, FunctionProtoBind, FunctionProtoToString, createUnmaskableTraps, getUnmaskedFunction, identity, isMaskedFunction, maskFunction, noop, JSONParse, JSONStringify, isTargetLive, markTargetAsLive, trackAsLiveTarget, MapCtor, MapProtoEntries, MapProtoSet, MapProtoSizeGetter, toSafeMap, MathMin, getNamespaceMarker, getStorageNamespaceMarker, prependNamespaceMarker, prependStorageNamespaceMarker, removeNamespaceMarker, removeStorageNamespaceMarker, startsWithNamespaceMarker, startsWithStorageNamespaceMarker, getNearMembraneProxySerializedValue, isNearMembraneProxy, NumberIsFinite, NumberIsInteger, NumberIsNaN, NumberProtoToFixed, NumberProtoValueOf, ObjectCtor, ObjectAssign, ObjectFreeze, ObjectDefineProperties, ObjectGetOwnPropertyDescriptors, ObjectGetOwnPropertySymbols, ObjectKeys, ObjectPreventExtensions, ObjectProto, ObjectProtoToString, isObject, isObjectLike, ObjectHasOwn, ObjectLookupOwnGetter, ObjectLookupOwnSetter, ObjectLookupOwnValue, PromiseCtor, PromiseProtoCatch, PromiseProtoThen, PromiseResolve, PromiseReject, ProxyCtor, createRevokedProxy, isRevokedProxy, ReflectApply, ReflectConstruct, ReflectDefineProperty, ReflectDeleteProperty, ReflectGet, ReflectGetOwnPropertyDescriptor, ReflectGetPrototypeOf, ReflectHas, ReflectIsExtensible, ReflectOwnKeys, ReflectPreventExtensions, ReflectSet, ReflectSetPrototypeOf, RegExpCtor, RegExpProto, RegExpProtoExec, RegExpProtoTest, RegExpProtoSourceGetter, toRegExpEscapedIdentifierName, toRegExpEscapedString, SetCtor, SetProtoAdd, SetProtoValues, SetProtoSizeGetter, toSafeSet, StringCtor, StringProtoCharAt, StringProtoCharCodeAt, StringProtoEndsWith, StringProtoIncludes, StringProtoIndexOf, StringProtoLastIndexOf, StringProtoMatch, StringProtoReplace, StringProtoSlice, StringProtoSplit, StringProtoStartsWith, StringProtoSubstring, StringProtoToLowerCase, StringProtoToUpperCase, StringProtoValueOf, capitalizeFirstChar, enquote, extractFunctionBodySource, isConvertibleToString, toString, toSafeTemplateStringValue, SymbolAsyncIterator, SymbolFor, SymbolIterator, SymbolToStringTag, SymbolUnscopables, SymbolProtoToString, SymbolProtoValueOf, Getter, GetterSetterDescriptor, NearMembraneSerializedValue, ProxyHandlerTraps, ProxyTarget, ProxyTrapInvokers, SandboxKey, SandboxRecord, SandboxType, Setter, TargetTraits, WeakMapCtor, WeakMapProtoHas, toSafeWeakMap, WeakSetCtor, WeakSetProtoHas, toSafeWeakSet }; |
{ | ||
"name": "@locker/shared", | ||
"version": "0.20.0", | ||
"version": "0.20.1", | ||
"license": "SEE LICENSE IN LICENSE.txt", | ||
@@ -22,3 +22,3 @@ "author": "Salesforce UI Security Team", | ||
], | ||
"gitHead": "83d7cae039e9f056e52c326bc5a802604b287535" | ||
"gitHead": "aeff9762e5bd31518fde541894c76cc0a9e8139d" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
191413
3807