UNPKG

@nodescript/stdlib

Version:
24 lines (23 loc) 486 B
export const module = { version: '1.0.4', moduleName: 'Array', description: 'Creates an array with computed items.', keywords: ['list'], params: { items: { schema: { type: 'array', items: { type: 'any' } }, } }, result: { schema: { type: 'array', items: { type: 'any' }, } }, }; export const compute = params => { return params.items; };