@waiting/shared-core
Advanced tools
Comparing version 5.7.0 to 5.7.1
@@ -6,2 +6,10 @@ # Change Log | ||
## 5.7.1 (2021-02-18) | ||
**Note:** Version bump only for package @waiting/shared-core | ||
# 5.7.0 (2021-02-17) | ||
@@ -8,0 +16,0 @@ |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* @version 5.6.2 | ||
* @version 5.7.0 | ||
* @author waiting | ||
@@ -282,5 +282,4 @@ * @license MIT | ||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */ | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to tbUserDetail | ||
* @see SnakeToCamel of @waiting/shared-types | ||
@@ -297,3 +296,3 @@ */ | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to TbUserDetail | ||
* @see SnakeToPascal of @waiting/shared-types | ||
@@ -300,0 +299,0 @@ */ |
@@ -0,10 +1,11 @@ | ||
import { SnakeToCamel, SnakeToPascal } from '@waiting/shared-types'; | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to tbUserDetail | ||
* @see SnakeToCamel of @waiting/shared-types | ||
*/ | ||
export declare function snakeToCamel(input: string): string; | ||
export declare function snakeToCamel<T extends string = string>(input: T): SnakeToCamel<T>; | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to TbUserDetail | ||
* @see SnakeToPascal of @waiting/shared-types | ||
*/ | ||
export declare function snakeToPascal(input: string): string; | ||
export declare function snakeToPascal<T extends string = string>(input: T): SnakeToPascal<T>; |
@@ -1,4 +0,3 @@ | ||
/* eslint-disable @typescript-eslint/prefer-nullish-coalescing */ | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to tbUserDetail | ||
* @see SnakeToCamel of @waiting/shared-types | ||
@@ -15,3 +14,3 @@ */ | ||
/** | ||
* | ||
* Convert 'tb_user-detail' to TbUserDetail | ||
* @see SnakeToPascal of @waiting/shared-types | ||
@@ -18,0 +17,0 @@ */ |
{ | ||
"name": "@waiting/shared-core", | ||
"author": "waiting", | ||
"version": "5.7.0", | ||
"version": "5.7.1", | ||
"description": "node core function re export with Promise or Observable", | ||
@@ -26,3 +26,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@waiting/shared-types": "^5.7.0", | ||
"@waiting/shared-types": "^5.7.1", | ||
"rxjs": "6" | ||
@@ -78,3 +78,3 @@ }, | ||
}, | ||
"gitHead": "a17359beb2a7101229a21d8a745b72a632db4281" | ||
"gitHead": "c00d46caf7590b68eb67b38bd47b030e759f5d38" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61441
799
Updated@waiting/shared-types@^5.7.1