Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@locker/shared

Package Overview
Dependencies
Maintainers
6
Versions
226
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@locker/shared - npm Package Compare versions

Comparing version 0.12.2 to 0.12.3

types/Array.d.ts.map

2

dist/index.cjs.js

@@ -295,2 +295,2 @@ /**

exports.wrap = wrap;
/** version: 0.12.2 */
/** version: 0.12.3 */

@@ -195,2 +195,2 @@ /**

export { ArrayConcat, ArrayFilter, ArrayForEach, ArrayFrom, ArrayIncludes, ArrayIsArray, ArrayJoin, ArrayMap, ArrayPush, ArraySome, ErrorCreate, FunctionBind, FunctionCall, JSONParse, JSONStringify, LockerRangeError, LockerSecurityError, MapConcat, MapCreate, MapEntries, MapForEach, MapGet, MapIteratorCreate, MapSet, MathMin, ObjectAssign, ObjectCreate, ObjectDefineProperty, ObjectFreeze, ObjectGetOwnPropertyDescriptors, ObjectGetOwnPropertyNames, ObjectGetOwnPropertySymbols, ObjectHasOwnProperty, ObjectIsFrozen, ObjectIsSealed, ObjectKeys, ObjectPreventExtensions, ObjectSeal, ProxyCreate, ProxyRevocable, RangeErrorCreate, ReflectApply, ReflectConstruct, ReflectDefineProperty, ReflectDeleteProperty, ReflectGet, ReflectGetOwnPropertyDescriptor, ReflectGetPrototypeOf, ReflectHas, ReflectIsExtensible, ReflectOwnKeys, ReflectPreventExtensions, ReflectSet, ReflectSetPrototypeOf, RegExpTest, SetAdd, SetCreate, SetDelete, SetHas, StringCharCodeAt, StringEndsWith, StringIncludes, StringIndexOf, StringMatch, StringReplace, StringSplit, StringStartsWith, StringSubstring, StringToLowerCase, StringToUpperCase, StringTrim, SymbolFor, SymbolIterator, TypeErrorCreate, WeakMapCreate, WeakMapGet, WeakMapHas, WeakMapSet, createRevokedProxy, createSafeObject, defaults, isFunction, isNull, isNullOrUndefined, isObject, isObjectLike, isTrue, isUndefined, maskDistortion, sanitizeArguments, toBoolean, toIgnore, toString, toStringIfNotNullOrUndefined, unapply, unconstruct, wrap };
/** version: 0.12.2 */
/** version: 0.12.3 */
{
"name": "@locker/shared",
"version": "0.12.2",
"version": "0.12.3",
"license": "Salesforce Developer Agreement",

@@ -18,9 +18,6 @@ "author": "Salesforce UI Security Team",

"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c .rolluprc.cjs",
"build": "tsc --project tsconfig.types.json && rollup --config .rolluprc.cjs",
"clean": "locker-trash dist/ types/"
},
"devDependencies": {
"typescript": "3.8.3"
},
"gitHead": "738fe1b33d349d389394370359044c1d5ee968c4"
"gitHead": "04a89b8ef9516c8ebc5f38a1bb2d93b04deba348"
}

@@ -9,3 +9,3 @@ export declare const ArrayConcat: Function;

export declare const ArraySome: Function;
export declare const ArrayIsArray: (arg: any) => arg is any[];
export declare const ArrayIsArray: <T>(arg: {} | T) => arg is T extends readonly any[] ? unknown extends T ? never : readonly any[] : any[];
export declare const ArrayFrom: {

@@ -17,1 +17,2 @@ <T>(arrayLike: ArrayLike<T>): T[];

};
//# sourceMappingURL=Array.d.ts.map

@@ -10,1 +10,2 @@ export declare function isFunction(value: any): value is Function;

export declare function unconstruct(func: Function): Function;
//# sourceMappingURL=Basic.d.ts.map
export declare function toBoolean(value: any): boolean;
//# sourceMappingURL=Boolean.d.ts.map

@@ -6,1 +6,2 @@ declare type Distortion = (...arg: any) => any;

export {};
//# sourceMappingURL=Distortion.d.ts.map

@@ -8,1 +8,2 @@ export declare const ErrorCreate: Function;

}
//# sourceMappingURL=Error.d.ts.map
export declare const FunctionBind: Function;
export declare const FunctionCall: Function;
export declare function wrap(func: Function, wrapper: Function): Function;
//# sourceMappingURL=Function.d.ts.map

@@ -19,1 +19,2 @@ export * from './Array';

export * from './WeakMap';
//# sourceMappingURL=index.d.ts.map

@@ -5,1 +5,2 @@ export declare const JSONParse: (text: string, reviver?: ((this: any, key: string, value: any) => any) | undefined) => any, JSONStringify: {

};
//# sourceMappingURL=JSON.d.ts.map

@@ -8,1 +8,2 @@ export declare const MapCreate: Function;

export declare function MapConcat(...maps: any): Map<any, any>;
//# sourceMappingURL=Map.d.ts.map
export declare const MathMin: (...values: number[]) => number;
//# sourceMappingURL=Math.d.ts.map

@@ -24,1 +24,2 @@ export declare const ObjectAssign: {

export declare function defaults(object: any, source: any): any;
//# sourceMappingURL=Object.d.ts.map

@@ -6,1 +6,2 @@ export declare const ProxyCreate: Function;

};
//# sourceMappingURL=Proxy.d.ts.map
export declare const ReflectApply: typeof Reflect.apply, ReflectConstruct: typeof Reflect.construct, ReflectDeleteProperty: typeof Reflect.deleteProperty, ReflectHas: typeof Reflect.has, ReflectGet: typeof Reflect.get, ReflectGetPrototypeOf: typeof Reflect.getPrototypeOf, ReflectSet: typeof Reflect.set, ReflectSetPrototypeOf: typeof Reflect.setPrototypeOf, ReflectDefineProperty: typeof Reflect.defineProperty, ReflectIsExtensible: typeof Reflect.isExtensible, ReflectGetOwnPropertyDescriptor: typeof Reflect.getOwnPropertyDescriptor, ReflectOwnKeys: typeof Reflect.ownKeys, ReflectPreventExtensions: typeof Reflect.preventExtensions;
//# sourceMappingURL=Reflect.d.ts.map
export declare const RegExpTest: Function;
//# sourceMappingURL=RegExp.d.ts.map

@@ -5,1 +5,2 @@ export declare function toIgnore(value: any): any;

export {};
//# sourceMappingURL=Sanitize.d.ts.map

@@ -5,1 +5,2 @@ export declare const SetCreate: Function;

export declare const SetHas: Function;
//# sourceMappingURL=Set.d.ts.map

@@ -15,1 +15,2 @@ export declare const StringCharCodeAt: Function;

export declare function toStringIfNotNullOrUndefined(value: any): string | undefined | null;
//# sourceMappingURL=String.d.ts.map
export declare const SymbolFor: (key: string) => symbol, SymbolIterator: symbol;
//# sourceMappingURL=Symbol.d.ts.map

@@ -5,1 +5,2 @@ export declare const WeakMapCreate: Function;

export declare const WeakMapSet: Function;
//# sourceMappingURL=WeakMap.d.ts.map
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc