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

dfts-helper

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dfts-helper - npm Package Compare versions

Comparing version 0.0.10 to 1.0.0

7

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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

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