Skip to content

Commit

Permalink
fix: lodash import order
Browse files Browse the repository at this point in the history
  • Loading branch information
caohuilin committed Sep 29, 2024
1 parent 418c755 commit 0af68c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/utils/src/lodash.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import merge from 'lodash.merge';
import flattenDeep from 'lodash.flattendeep';
import get from 'lodash.get';
import isFunction from 'lodash.isfunction';
import isObject from 'lodash.isobject';
import get from 'lodash.get';
import isString from 'lodash.isstring';
import flattenDeep from 'lodash.flattendeep';
import merge from 'lodash.merge';

export { merge, isFunction, isObject, get, isString, flattenDeep };

0 comments on commit 0af68c4

Please sign in to comment.