Skip to content

Commit

Permalink
Remove wrapper around areEquals
Browse files Browse the repository at this point in the history
  • Loading branch information
kumavis committed Jun 15, 2019
1 parent 724aa84 commit 9fe3aea
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
*/
declare var require: any;

const _equals = require('fast-deep-equal');
const areEquals = (a: any, b: any): boolean => {
return _equals(a, b)
}
const areEquals = require('fast-deep-equal');
import { PatchError, _deepClone, isInteger, unescapePathComponent, hasUndefined } from './helpers';

export const JsonPatchError = PatchError;
Expand Down

0 comments on commit 9fe3aea

Please sign in to comment.