mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(core): Replace lodash's "soft-deprecated" individual packages with lodash to resolve CVE (no-changelog) (#6450)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -9,21 +9,21 @@ import type {
|
||||
IWebhookFunctions,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import set from 'lodash.set';
|
||||
import concat from 'lodash.concat';
|
||||
import split from 'lodash.split';
|
||||
import every from 'lodash.every';
|
||||
import toString from 'lodash.tostring';
|
||||
import toNumber from 'lodash.tonumber';
|
||||
import isString from 'lodash.isstring';
|
||||
import compact from 'lodash.compact';
|
||||
import first from 'lodash.first';
|
||||
import last from 'lodash.last';
|
||||
import clone from 'lodash.clone';
|
||||
import some from 'lodash.some';
|
||||
import isArray from 'lodash.isarray';
|
||||
import trim from 'lodash.trim';
|
||||
import escapeRegExp from 'lodash.escaperegexp';
|
||||
import set from 'lodash/set';
|
||||
import concat from 'lodash/concat';
|
||||
import split from 'lodash/split';
|
||||
import every from 'lodash/every';
|
||||
import toString from 'lodash/toString';
|
||||
import toNumber from 'lodash/toNumber';
|
||||
import isString from 'lodash/isString';
|
||||
import compact from 'lodash/compact';
|
||||
import first from 'lodash/first';
|
||||
import last from 'lodash/last';
|
||||
import clone from 'lodash/clone';
|
||||
import some from 'lodash/some';
|
||||
import isArray from 'lodash/isArray';
|
||||
import trim from 'lodash/trim';
|
||||
import escapeRegExp from 'lodash/escapeRegExp';
|
||||
|
||||
export async function koBoToolboxApiRequest(
|
||||
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
|
||||
|
||||
Reference in New Issue
Block a user