mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Elias Meire <elias@meire.dev>
85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import { ExpressionError, ExpressionExtensionError } from '../ExpressionError';
|
|
import { average as aAverage } from './ArrayExtensions';
|
|
|
|
const min = Math.min;
|
|
const max = Math.max;
|
|
|
|
const numberList = (start: number, end: number): number[] => {
|
|
const size = Math.abs(start - end) + 1;
|
|
const arr = new Array<number>(size);
|
|
|
|
let curr = start;
|
|
for (let i = 0; i < size; i++) {
|
|
if (start < end) {
|
|
arr[i] = curr++;
|
|
} else {
|
|
arr[i] = curr--;
|
|
}
|
|
}
|
|
|
|
return arr;
|
|
};
|
|
|
|
const zip = (keys: unknown[], values: unknown[]): unknown => {
|
|
if (keys.length !== values.length) {
|
|
throw new ExpressionExtensionError('keys and values not of equal length');
|
|
}
|
|
return keys.reduce((p, c, i) => {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
|
|
(p as any)[c as any] = values[i];
|
|
return p;
|
|
}, {});
|
|
};
|
|
|
|
const average = (...args: number[]) => {
|
|
return aAverage(args);
|
|
};
|
|
|
|
const not = (value: unknown): boolean => {
|
|
return !value;
|
|
};
|
|
|
|
function ifEmpty<T, V>(value: V, defaultValue: T) {
|
|
if (arguments.length !== 2) {
|
|
throw new ExpressionError('expected two arguments (value, defaultValue) for this function');
|
|
}
|
|
if (value === undefined || value === null || value === '') {
|
|
return defaultValue;
|
|
}
|
|
if (typeof value === 'object') {
|
|
if (Array.isArray(value) && !value.length) {
|
|
return defaultValue;
|
|
}
|
|
if (!Object.keys(value).length) {
|
|
return defaultValue;
|
|
}
|
|
}
|
|
return value;
|
|
}
|
|
|
|
ifEmpty.doc = {
|
|
name: 'ifEmpty',
|
|
description:
|
|
'Returns the default value if the value is empty. Empty values are undefined, null, empty strings, arrays without elements and objects without keys.',
|
|
returnType: 'any',
|
|
args: [
|
|
{ name: 'value', type: 'any' },
|
|
{ name: 'defaultValue', type: 'any' },
|
|
],
|
|
docURL: 'https://docs.n8n.io/code-examples/expressions/data-transformation-functions/#if-empty',
|
|
};
|
|
|
|
export const extendedFunctions = {
|
|
min,
|
|
max,
|
|
not,
|
|
average,
|
|
numberList,
|
|
zip,
|
|
$min: min,
|
|
$max: max,
|
|
$average: average,
|
|
$not: not,
|
|
$ifEmpty: ifEmpty,
|
|
};
|