Socket
Socket
Sign inDemoInstall

@types/lodash

Package Overview
Dependencies
0
Maintainers
1
Versions
202
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.14.182 to 4.14.183

6

lodash/common/lang.d.ts

@@ -564,2 +564,4 @@ import _ = require("../index");

type EmptyObject<T> = { [K in keyof T]?: never };
type EmptyObjectOf<T> = EmptyObject<T> extends T ? EmptyObject<T> : never;
interface LoDashStatic {

@@ -573,2 +575,6 @@ /**

*/
isEmpty<T extends { __trapAny: any }>(value?: T): boolean;
isEmpty(value: string): value is '';
isEmpty(value: Map<any, any> | Set<any> | List<any> | null | undefined): boolean;
isEmpty<T extends object>(value: T | null | undefined): value is EmptyObjectOf<T> | null | undefined;
isEmpty(value?: any): boolean;

@@ -575,0 +581,0 @@ }

2

lodash/common/string.d.ts

@@ -780,3 +780,3 @@ import _ = require("../index");

*/
words(pattern?: string | RegExp): string[];
words(pattern?: string | RegExp): Collection<string>;
}

@@ -783,0 +783,0 @@ interface LoDashExplicitWrapper<TValue> {

{
"name": "@types/lodash",
"version": "4.14.182",
"version": "4.14.183",
"description": "TypeScript definitions for Lo-Dash",

@@ -58,4 +58,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",

"dependencies": {},
"typesPublisherContentHash": "c5a9e97a318db3afdf0c9c86858b309b9cf7165152c921502ff1bc440296a037",
"typeScriptVersion": "3.9"
"typesPublisherContentHash": "4427e0d66fe39669d19442907416f51fccda415e9ae3ac9e95efa59ee6f65f7e",
"typeScriptVersion": "4.0"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Mon, 18 Apr 2022 23:03:04 GMT
* Last updated: Tue, 16 Aug 2022 19:02:35 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `_`

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc