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

h3lp

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

h3lp - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

lib/manager/index.d.ts

3

lib/index.d.ts
import { H3lp } from './manager/h3lp';
export * from './manager/h3lp';
export * from './manager';
export * from './model/delta';
export * from './model/string';
export declare const h3lp: H3lp;

@@ -19,5 +19,6 @@ "use strict";

const h3lp_1 = require("./manager/h3lp");
__exportStar(require("./manager/h3lp"), exports);
__exportStar(require("./manager"), exports);
__exportStar(require("./model/delta"), exports);
__exportStar(require("./model/string"), exports);
exports.h3lp = new h3lp_1.H3lp();
//# sourceMappingURL=index.js.map

@@ -1,12 +0,12 @@

import { NormalizeOptions } from './string';
import { Delta } from '../index';
import { Utils, Validator, FsHelper, HttpHelper, ObjectHelper, EnvHelper, StringHelper, DeltaHelper } from './';
import { Delta, NormalizeOptions } from '../index';
export declare class H3lp {
private utils;
private validator;
private fs;
private http;
private obj;
private env;
private delta;
private string;
utils: Utils;
validator: Validator;
fs: FsHelper;
http: HttpHelper;
obj: ObjectHelper;
env: EnvHelper;
delta: DeltaHelper;
string: StringHelper;
constructor();

@@ -13,0 +13,0 @@ get(uri: any): Promise<any>;

@@ -13,20 +13,13 @@ "use strict";

exports.H3lp = void 0;
const utils_1 = require("./utils");
const validator_1 = require("./validator");
const fs_1 = require("./fs");
const http_1 = require("./http");
const object_1 = require("./object");
const env_1 = require("./env");
const string_1 = require("./string");
const delta_1 = require("./delta");
const _1 = require("./");
class H3lp {
constructor() {
this.validator = new validator_1.Validator();
this.utils = new utils_1.Utils(this.validator);
this.fs = new fs_1.FsHelper();
this.delta = new delta_1.DeltaHelper(this.validator);
this.string = new string_1.StringHelper(this.validator);
this.http = new http_1.HttpHelper(this.string);
this.obj = new object_1.ObjectHelper(this.http);
this.env = new env_1.EnvHelper(this.utils, this.string);
this.validator = new _1.Validator();
this.utils = new _1.Utils(this.validator);
this.fs = new _1.FsHelper();
this.delta = new _1.DeltaHelper(this.validator);
this.string = new _1.StringHelper(this.validator);
this.http = new _1.HttpHelper(this.string);
this.obj = new _1.ObjectHelper(this.http);
this.env = new _1.EnvHelper(this.utils, this.string);
}

@@ -33,0 +26,0 @@ get(uri) {

import { Validator } from './validator';
export interface NormalizeOptions {
toLower?: boolean;
toUpper?: boolean;
}
import { NormalizeOptions } from './../model/string';
export declare class StringHelper {

@@ -7,0 +4,0 @@ private validator;

{
"name": "h3lp",
"version": "0.1.5",
"version": "0.1.6",
"description": "Helper for nodeJs",

@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@hotmail.com>",

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