mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
30 lines
922 B
TypeScript
30 lines
922 B
TypeScript
|
import type { IDataObject } from 'n8n-workflow';
|
||
|
|
||
|
/**
|
||
|
* Stringify any non-standard JS objects (e.g. `Date`, `RegExp`) inside output items at any depth.
|
||
|
*/
|
||
|
export function standardizeOutput(output: IDataObject) {
|
||
|
for (const [key, value] of Object.entries(output)) {
|
||
|
if (!isTraversable(value)) continue;
|
||
|
|
||
|
output[key] =
|
||
|
value.constructor.name !== 'Object'
|
||
|
? JSON.stringify(value) // Date, RegExp, etc.
|
||
|
: standardizeOutput(value);
|
||
|
}
|
||
|
|
||
|
return output;
|
||
|
}
|
||
|
|
||
|
export function isObject(maybe: unknown): maybe is { [key: string]: unknown } {
|
||
|
return typeof maybe === 'object' && maybe !== null && !Array.isArray(maybe);
|
||
|
}
|
||
|
|
||
|
function isTraversable(maybe: unknown): maybe is IDataObject {
|
||
|
return isObject(maybe) && Object.keys(maybe).length > 0;
|
||
|
}
|
||
|
|
||
|
export type CodeNodeMode = 'runOnceForAllItems' | 'runOnceForEachItem';
|
||
|
|
||
|
export const SUPPORTED_ITEM_KEYS = new Set(['json', 'binary', 'error', 'pairedItem', 'index']);
|