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

@simplysm/sd-core-common

Package Overview
Dependencies
Maintainers
0
Versions
641
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@simplysm/sd-core-common - npm Package Compare versions

Comparing version 12.4.2 to 12.5.1

3

dist/types/DeepPartial.d.ts

@@ -0,3 +1,4 @@

import { TFlatType } from "./Type";
export type DeepPartial<T> = Partial<{
[K in keyof T]: DeepPartial<T[K]>;
[K in keyof T]: T[K] extends TFlatType ? T[K] : DeepPartial<T[K]>;
}>;

@@ -8,2 +8,3 @@ export declare class StringUtil {

static isNullOrEmpty(str: string | null | undefined): str is ("" | undefined | null);
static insert(str: string, index: number, insertString: string): string;
}

@@ -76,3 +76,6 @@ export class StringUtil {

}
static insert(str, index, insertString) {
return str.substring(0, index) + insertString + str.substring(index);
}
}
//# sourceMappingURL=StringUtil.js.map
{
"name": "@simplysm/sd-core-common",
"version": "12.4.2",
"version": "12.5.1",
"description": "심플리즘 패키지 - 코어 모듈 (common)",

@@ -5,0 +5,0 @@ "author": "김석래",

@@ -1,1 +0,3 @@

export type DeepPartial<T> = Partial<{ [K in keyof T]: DeepPartial<T[K]> }>;
import {TFlatType} from "./Type";
export type DeepPartial<T> = Partial<{ [K in keyof T]: T[K] extends TFlatType ? T[K] : DeepPartial<T[K]> }>;

@@ -82,2 +82,6 @@ export class StringUtil {

}
public static insert(str: string, index: number, insertString: string) {
return str.substring(0, index) + insertString + str.substring(index)
}
}

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