Socket
Socket
Sign inDemoInstall

@segment/analytics-core

Package Overview
Dependencies
Maintainers
287
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@segment/analytics-core - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

2

dist/types/validation/helpers.d.ts

@@ -5,3 +5,3 @@ export declare function isString(obj: unknown): obj is string;

export declare function exists<T>(val: unknown): val is NonNullable<T>;
export declare function isPlainObject(obj: unknown): obj is Record<string | symbol | number, any>;
export declare function isPlainObject(obj: unknown): obj is Record<string | symbol | number, unknown>;
//# sourceMappingURL=helpers.d.ts.map
{
"name": "@segment/analytics-core",
"version": "1.3.1",
"version": "1.3.2",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

@@ -19,3 +19,3 @@ export function isString(obj: unknown): obj is string {

obj: unknown
): obj is Record<string | symbol | number, any> {
): obj is Record<string | symbol | number, unknown> {
return (

@@ -22,0 +22,0 @@ Object.prototype.toString.call(obj).slice(8, -1).toLowerCase() === 'object'

Sorry, the diff of this file is not supported yet

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