mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 18:38:15 +01:00
Qualify CJS-only module imports
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-namespace */
|
||||
|
||||
import { isEqual, isNumber, omit, orderBy, partition } from 'lodash';
|
||||
import lodash from 'lodash';
|
||||
|
||||
import { SignalService as Proto } from '../protobuf/index.js';
|
||||
import { createLogger } from '../logging/log.js';
|
||||
@@ -19,6 +19,8 @@ import { assertDev } from '../util/assert.js';
|
||||
import type { AciString } from './ServiceId.js';
|
||||
import { normalizeAci } from '../util/normalizeAci.js';
|
||||
|
||||
const { isEqual, isNumber, omit, orderBy, partition } = lodash;
|
||||
|
||||
const log = createLogger('BodyRange');
|
||||
|
||||
// Cold storage of body ranges
|
||||
|
||||
Reference in New Issue
Block a user