Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
Fix usage of lodash
Browse files Browse the repository at this point in the history
We didn't have lodash as a dependency instead having lodash.isObject
builds were working because lodash was a dev dependency.

Resolves CacheControl#346
  • Loading branch information
Christopher Pardy committed Aug 26, 2023
1 parent e7263f4 commit 245ef93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rule-result.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

import deepClone from 'clone'
import { isObject } from 'lodash'
import isObject from 'lodash.isobjectlike'

export default class RuleResult {
constructor (conditions, event, priority, name) {
Expand Down

0 comments on commit 245ef93

Please # to comment.