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

@the-libs/base-shared

Package Overview
Dependencies
Maintainers
0
Versions
761
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@the-libs/base-shared - npm Package Compare versions

Comparing version 1.2.19 to 1.2.21

10

index.js

@@ -74,2 +74,9 @@ // libs/base-shared/src/exceptions/base.ts

};
var stringifyIfNeeded = (o) => {
try {
return String(o) === "[object Object]" ? JSON.stringify(o) : o;
} catch {
return "stringification is needed but not possible";
}
};
export {

@@ -85,3 +92,4 @@ ClientError,

handleSubscribeClick,
parseJSONWithType
parseJSONWithType,
stringifyIfNeeded
};

2

package.json
{
"name": "@the-libs/base-shared",
"version": "1.2.19",
"version": "1.2.21",
"dependencies": {},

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

@@ -8,2 +8,3 @@ export * from './format-text';

export declare const handleSubscribeClick: (pubkey: string, cb: (pushSubscription: TODO) => void) => void;
export declare const stringifyIfNeeded: (o: TODO) => any;
//# sourceMappingURL=index.d.ts.map

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