Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit 245ef93

Browse files
author
Christopher Pardy
committed
Fix usage of lodash
We didn't have lodash as a dependency instead having lodash.isObject builds were working because lodash was a dev dependency. Resolves CacheControl#346
1 parent e7263f4 commit 245ef93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rule-result.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
import deepClone from 'clone'
4-
import { isObject } from 'lodash'
4+
import isObject from 'lodash.isobjectlike'
55

66
export default class RuleResult {
77
constructor (conditions, event, priority, name) {

0 commit comments

Comments
 (0)