mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-03 08:57:28 -08:00
3a5bd12945
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Co-authored-by: Shireen Missi <shireen@n8n.io>
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import type { INodeExecutionData, IDataObject } from 'n8n-workflow';
|
|
import { NodeExecutionOutput } from 'n8n-workflow';
|
|
|
|
export function isObject(maybe: unknown): maybe is { [key: string]: unknown } {
|
|
return (
|
|
typeof maybe === 'object' && maybe !== null && !Array.isArray(maybe) && !(maybe instanceof Date)
|
|
);
|
|
}
|
|
|
|
function isTraversable(maybe: unknown): maybe is IDataObject {
|
|
return isObject(maybe) && typeof maybe.toJSON !== 'function' && Object.keys(maybe).length > 0;
|
|
}
|
|
|
|
/**
|
|
* Stringify any non-standard JS objects (e.g. `Date`, `RegExp`) inside output items at any depth.
|
|
*/
|
|
export function standardizeOutput(output: IDataObject) {
|
|
function standardizeOutputRecursive(obj: IDataObject, knownObjects = new WeakSet()): IDataObject {
|
|
for (const [key, value] of Object.entries(obj)) {
|
|
if (!isTraversable(value)) continue;
|
|
|
|
if (typeof value === 'object' && value !== null) {
|
|
if (knownObjects.has(value)) {
|
|
// Found circular reference
|
|
continue;
|
|
}
|
|
knownObjects.add(value);
|
|
}
|
|
|
|
obj[key] =
|
|
value.constructor.name !== 'Object'
|
|
? JSON.stringify(value) // Date, RegExp, etc.
|
|
: standardizeOutputRecursive(value, knownObjects);
|
|
}
|
|
return obj;
|
|
}
|
|
standardizeOutputRecursive(output);
|
|
return output;
|
|
}
|
|
|
|
export const addPostExecutionWarning = (
|
|
returnData: INodeExecutionData[],
|
|
inputItemsLength: number,
|
|
) => {
|
|
if (
|
|
returnData.length !== inputItemsLength ||
|
|
returnData.some((item) => item.pairedItem === undefined)
|
|
) {
|
|
return new NodeExecutionOutput(
|
|
[returnData],
|
|
[
|
|
{
|
|
message:
|
|
'To make sure expressions after this node work, return the input items that produced each output item. <a target="_blank" href="https://docs.n8n.io/data/data-mapping/data-item-linking/item-linking-code-node/">More info</a>',
|
|
location: 'outputPane',
|
|
},
|
|
],
|
|
);
|
|
}
|
|
|
|
return [returnData];
|
|
};
|