Socket
Socket
Sign inDemoInstall

@parca/utilities

Package Overview
Dependencies
Maintainers
4
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parca/utilities - npm Package Compare versions

Comparing version 0.0.28 to 0.0.29

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## 0.0.29 (2023-08-31)
**Note:** Version bump only for package @parca/utilities
## [0.0.28](https://github.com/parca-dev/parca/compare/@parca/utilities@0.0.27...@parca/utilities@0.0.28) (2023-08-23)

@@ -8,0 +12,0 @@

2

dist/index.d.ts

@@ -14,3 +14,3 @@ import { Label } from '@parca/client';

export declare const isDevMode: () => boolean;
export declare const getLastItem: (thePath: string | undefined) => string | undefined;
export declare const getLastItem: (thePath: string | undefined | null) => string | undefined;
export declare const parseParams: (querystring: string) => Record<string, string | string[] | undefined>;

@@ -17,0 +17,0 @@ export declare const selectQueryParam: (key: string) => string | string[] | undefined;

{
"name": "@parca/utilities",
"version": "0.0.28",
"version": "0.0.29",
"description": "A set of reusable functions for Parca",

@@ -24,3 +24,3 @@ "main": "dist/index.js",

},
"gitHead": "6cc8241e1dba86446268b2c427330e46fe815fb0"
"gitHead": "86e4f37f0fdffafdc5bbe71e8efe04550af1ae59"
}

@@ -101,3 +101,3 @@ // Copyright 2022 The Parca Authors

export const getLastItem = (thePath: string | undefined): string | undefined => {
export const getLastItem = (thePath: string | undefined | null): string | undefined => {
if (thePath === undefined || thePath === null || thePath === '') return;

@@ -104,0 +104,0 @@

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