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

@dynamic-labs/utils

Package Overview
Dependencies
Maintainers
1
Versions
535
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/utils - npm Package Compare versions

Comparing version 3.0.0-alpha.67 to 3.0.0-alpha.68

6

package.json
{
"name": "@dynamic-labs/utils",
"version": "3.0.0-alpha.67",
"version": "3.0.0-alpha.68",
"repository": {

@@ -31,4 +31,4 @@ "type": "git",

"tldts": "6.0.16",
"@dynamic-labs/logger": "3.0.0-alpha.67",
"@dynamic-labs/types": "3.0.0-alpha.67",
"@dynamic-labs/logger": "3.0.0-alpha.68",
"@dynamic-labs/types": "3.0.0-alpha.68",
"buffer": "6.0.3",

@@ -35,0 +35,0 @@ "eventemitter3": "5.0.1",

import { IStorageService } from '../types';
type CreateStorageServiceProps = {
prefix?: string;
postfix?: string;
storage: Storage;
};
export declare const createStorageService: ({ prefix, storage, }: CreateStorageServiceProps) => IStorageService;
export declare const createStorageService: ({ postfix, storage, }: CreateStorageServiceProps) => IStorageService;
export {};

@@ -5,4 +5,4 @@ 'use client'

const createStorageService = ({ prefix, storage, }) => {
const getKey = (key) => (prefix ? `${key}_${prefix}` : key);
const createStorageService = ({ postfix, storage, }) => {
const getKey = (key) => (postfix ? `${key}_${postfix}` : key);
// eslint-disable-next-line @typescript-eslint/no-explicit-any

@@ -9,0 +9,0 @@ const packValue = (value) => JSON.stringify(value);

Sorry, the diff of this file is too big to display

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