Skip to content

Commit 6dc1022

Browse files
committed
Remove lodash.isobjectlike package
1 parent d20bd68 commit 6dc1022

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
"clone": "^2.1.2",
9090
"eventemitter2": "^6.4.4",
9191
"hash-it": "^6.0.0",
92-
"jsonpath-plus": "^7.2.0",
93-
"lodash.isobjectlike": "^4.0.0"
92+
"jsonpath-plus": "^7.2.0"
9493
}
9594
}

src/almanac.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { UndefinedFactError } from './errors'
55
import debug from './debug'
66

77
import { JSONPath } from 'jsonpath-plus'
8-
import isObjectLike from 'lodash.isobjectlike'
8+
import isObjectLike from 'lodash/isObjectLike'
99

1010
function defaultPathResolver (value, path) {
1111
return JSONPath({ path, json: value, wrap: false })

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.isobjectlike'
4+
import isObject from 'lodash/isObjectLike'
55

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

0 commit comments

Comments
 (0)