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

eslint-plugin-lodash

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-lodash - npm Package Compare versions

Comparing version 1.8.1 to 1.8.2

9

CHANGELOG.md

@@ -11,4 +11,11 @@ # Change Log

[unreleased]: https://github.com/wix/eslint-plugin-lodash/compare/v1.8.1...HEAD
[unreleased]: https://github.com/wix/eslint-plugin-lodash/compare/v1.8.2...HEAD
## [1.8.2] - 2016-04-28
### Fixed
- Fixed case where `prefer-times` crashes. ([`c199ed5`][c199ed5])
[c199ed5]: https://github.com/wix/eslint-plugin-lodash/commit/c199ed5f3c055648791079142c9afdee666ffbed
[1.8.2]: https://github.com/wix/eslint-plugin-lodash/compare/v1.8.2...v1.8.1
## [1.8.1] - 2016-04-27

@@ -15,0 +22,0 @@ ### Fixed

2

lib/rules/prefer-times.js

@@ -47,3 +47,3 @@ /**

var isIterateeParamDefinition = function isIterateeParamDefinition(state, node) {
return state && node.parent === state.func && _.includes(state.func.params, node) || node.parent.type === 'AssignmentPattern' && node.parent.parent === state.func;
return state && (node.parent === state.func && _.includes(state.func.params, node) || node.parent.type === 'AssignmentPattern' && node.parent.parent === state.func);
};

@@ -50,0 +50,0 @@

{
"name": "eslint-plugin-lodash",
"version": "1.8.1",
"version": "1.8.2",
"author": "Omer Ganim <ganimomer@gmail.com>",

@@ -5,0 +5,0 @@ "description": "Lodash specific linting rules for ESLint",

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