dfts-helper
Advanced tools
Comparing version 0.0.10 to 1.0.0
@@ -0,1 +1,8 @@ | ||
# [1.0.0](https://github.com/Dafnik/dfts-common/compare/dfts-helper-0.0.11...dfts-helper-1.0.0) (2023-05-29) | ||
### Reverts | ||
- Revert "feat: migrate to NodeNext module resolution" ([ff32add](https://github.com/Dafnik/dfts-common/commit/ff32adda2b2afffba32c107dc190ca11f0e16a89)) | ||
- Revert "chore(dfts-helper): release version 0.0.11" ([3e4081a](https://github.com/Dafnik/dfts-common/commit/3e4081a5bb62fd50e58ad6886c6593af7c800c51)) | ||
## [0.0.10](https://github.com/Dafnik/dfts-common/compare/dfts-helper-0.0.9...dfts-helper-0.0.10) (2023-04-07) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "dfts-helper", | ||
"version": "0.0.10", | ||
"version": "1.0.0", | ||
"description": "Typescript Library with tons of utility tools helping in all projects", | ||
@@ -5,0 +5,0 @@ "private": false, |
@@ -1,2 +0,2 @@ | ||
export class StringHelper { | ||
class StringHelper { | ||
static { this.hasNumbersInStringRegex = new RegExp(/\d/); } | ||
@@ -29,2 +29,3 @@ static { this.hasOnlyLettersInStringRegex = new RegExp(/^[a-zA-Z]+$/); } | ||
} | ||
export { StringHelper }; | ||
//# sourceMappingURL=_string.js.map |
@@ -1,4 +0,3 @@ | ||
import { IBuilder, IMap, UndefinedOrNullOr } from '../../../types'; | ||
export declare const s_imploder: (source?: UndefinedOrNullOr<string[]>) => ImploderBuilder; | ||
export declare class ImploderBuilder implements IBuilder<string> { | ||
export declare const s_imploder: (source?: string[] | null) => ImploderBuilder; | ||
export declare class ImploderBuilder { | ||
private _maxLength?; | ||
@@ -9,11 +8,11 @@ private _offset?; | ||
private _source?; | ||
static get(source?: UndefinedOrNullOr<string[]>): ImploderBuilder; | ||
source(source?: UndefinedOrNullOr<string[]>): this; | ||
mappedSource<T>(source?: UndefinedOrNullOr<T[]>, mapFn?: IMap<T, string>): this; | ||
maxLength(maxLength?: UndefinedOrNullOr<number>): this; | ||
offset(offset?: UndefinedOrNullOr<number>): this; | ||
separator(separator?: UndefinedOrNullOr<string>): this; | ||
suffix(suffix?: UndefinedOrNullOr<string>): this; | ||
static get(source?: string[] | null): ImploderBuilder; | ||
source(source?: string[] | null): this; | ||
mappedSource<T>(source?: T[] | null, mapFn?: (it: T) => string): this; | ||
maxLength(maxLength?: number | null): this; | ||
offset(offset?: number | null): this; | ||
separator(separator?: string | null): this; | ||
suffix(suffix?: string | null): this; | ||
build(): string; | ||
} | ||
//# sourceMappingURL=imploder.d.ts.map |
@@ -105,3 +105,3 @@ import { getLogMessage } from './log.header'; | ||
} | ||
export class LogHelper { | ||
class LogHelper { | ||
static { this.maximalLogSize = 5000; } | ||
@@ -165,2 +165,3 @@ static { this.overflowRemoveCount = 200; } | ||
} | ||
export { LogHelper }; | ||
//# sourceMappingURL=logger.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
2945
0
309534