New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@meteorwallet/utils

Package Overview
Dependencies
Maintainers
0
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meteorwallet/utils - npm Package Compare versions

Comparing version 0.49.0 to 0.50.0

2

dist/esm/javascript_type_utils/string.utils.d.ts

@@ -8,2 +8,3 @@ import { convertToNamingStyle } from "./string_utils/convertToNamingStyle";

declare function isString(val: unknown): val is string;
declare function capitalizeFirstLetter(str: string): string;
export declare const string_utils: {

@@ -17,4 +18,5 @@ nullEmpty: (str: string | null | undefined) => str is null | undefined | "";

shortenMiddleOut: typeof shortenMiddleOut;
capitalizeFirstLetter: typeof capitalizeFirstLetter;
};
export {};
//# sourceMappingURL=string.utils.d.ts.map

@@ -14,2 +14,8 @@ import { convertToNamingStyle } from "./string_utils/convertToNamingStyle";

}
function capitalizeFirstLetter(str) {
if (str.length === 0) {
return str;
}
return str.charAt(0).toUpperCase() + str.slice(1);
}
export const string_utils = {

@@ -23,2 +29,3 @@ nullEmpty,

shortenMiddleOut,
capitalizeFirstLetter,
};

2

package.json
{
"name": "@meteorwallet/utils",
"version": "0.49.0",
"version": "0.50.0",
"description": "Utility functions used in Meteor Wallet",

@@ -5,0 +5,0 @@ "files": [

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