Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@statsig/client-core

Package Overview
Dependencies
Maintainers
12
Versions
193
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@statsig/client-core - npm Package Compare versions

Comparing version
3.33.1
to
3.33.2
+1
-1
package.json
{
"name": "@statsig/client-core",
"version": "3.33.1",
"version": "3.33.2",
"license": "ISC",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/statsig-io/js-client-monorepo",

@@ -1,2 +0,2 @@

export declare const SDK_VERSION = "3.33.1";
export declare const SDK_VERSION = "3.33.2";
export type StatsigMetadata = {

@@ -3,0 +3,0 @@ readonly [key: string]: string | undefined | null;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StatsigMetadataProvider = exports.SDK_VERSION = void 0;
exports.SDK_VERSION = '3.33.1';
exports.SDK_VERSION = '3.33.2';
let metadata = {

@@ -6,0 +6,0 @@ sdkVersion: exports.SDK_VERSION,

@@ -5,4 +5,7 @@ type Primitive = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function';

} & {};
export type DeepReadonly<T> = T extends readonly (infer U)[] ? readonly DeepReadonly<U>[] : T extends object ? {
readonly [K in keyof T]: DeepReadonly<T[K]>;
} : T;
export declare function _typeOf(input: unknown): Primitive | 'array';
export declare function _isTypeMatch<T>(a: unknown, b: unknown): a is T;
export {};