Socket
Socket
Sign inDemoInstall

@assecosolutions/fox-common-utils

Package Overview
Dependencies
1
Maintainers
4
Versions
94
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.11.7 to 1.11.8-beta.0

index.js

17

package.json
{
"name": "@assecosolutions/fox-common-utils",
"version": "1.11.7",
"version": "1.11.8-beta.0",
"public": true,
"lib": {
"entryFile": "index.ts"
},
"publishConfig": {

@@ -10,14 +13,14 @@ "registry": "https://registry.npmjs.org"

"type": "git",
"url": "ssh://git@github.com:assecosolutions/fox.git",
"directory": "@assecosolutions/fox-common-utils"
"url": "ssh://git@github.com:assecosolutions/fox.git"
},
"author": "assecosolutions",
"license": "MIT",
"main": "./index.js",
"module": "./index.js",
"type": "module",
"types": "./src/index.d.ts",
"dependencies": {},
"module": "./index.esm.js",
"type": "module",
"main": "./index.esm.js",
"peerDependencies": {
"lodash-es": "^4.17.21"
"lodash-es": "4.17.21"
}
}

@@ -0,0 +0,0 @@ export * from './lib/strict-mode';

import { UnknownRecord } from './strict-mode';
export declare const dynamicContentExecutor: (str: string, obj: UnknownRecord) => string;
export declare const valueByPath: (item: UnknownRecord, path: string) => string;
export declare const enrichElementByValuePath: (element: any, item: any) => any;

@@ -0,0 +0,0 @@ export interface CustomComponentEventData<T, E extends HTMLElement | void = void> {

@@ -0,0 +0,0 @@ /**

export * from './object-visitor';
export * from './object-visitor.model';

@@ -0,5 +1,5 @@

import { UnknownRecord } from '../strict-mode';
import { KeysOfOpts, FlattenOpts, ObjectVisitorOpts } from './object-visitor.model';
import { UnknownRecord } from '../strict-mode';
export declare const keysOf: (value: unknown, opts?: KeysOfOpts) => Array<string>;
export declare const flatten: (object: UnknownRecord, opts?: FlattenOpts) => UnknownRecord;
export declare const visitObject: (value: unknown, parentKey: string | null | undefined, opts: ObjectVisitorOpts, visitFn: (key: string, value: unknown) => void) => void;

@@ -0,0 +0,0 @@ export type KeysOfOpts = ObjectVisitorOpts;

@@ -0,0 +0,0 @@ export declare function hasOverflow(element: HTMLElement): boolean;

@@ -0,0 +0,0 @@ import { Nil, Primitive } from './types';

@@ -0,0 +0,0 @@ export * from './assert';

export interface HasId {
_id: string;
}

@@ -0,0 +0,0 @@ export type Nil = null | undefined;

export declare const isEmpty: (value: unknown) => boolean;
export declare const isNotEmpty: (value: unknown) => boolean;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc