Skip to content

Commit

Permalink
refactor: get rid of is-plain-object dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jun 7, 2023
1 parent 14d2446 commit 098562a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"@types/pg": "^8.10.1",
"concat-stream": "^2.0.0",
"es6-error": "^4.1.1",
"is-plain-object": "^5.0.0",
"iso8601-duration": "^1.3.0",
"p-defer": "^3.0.0",
"pg": "^8.11.0",
Expand Down
2 changes: 1 addition & 1 deletion src/sqlFragmentFactories/createJsonSqlFragment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
type JsonSqlToken,
type SqlFragment,
} from '../types';
import { isPlainObject } from '../utilities/isPlainObject';
import { safeStringify } from '../utilities/safeStringify';
import { isPlainObject } from 'is-plain-object';
import { serializeError } from 'serialize-error';

const log = Logger.child({
Expand Down

0 comments on commit 098562a

Please sign in to comment.