UNPKG

@nodescript/stdlib

Version:
16 lines (15 loc) 387 B
export const module = { version: '1.1.4', moduleName: 'String / Trim', description: 'Removes leading and trailing whitespace from a string.', keywords: ['whitespace'], params: { string: { schema: { type: 'string' }, } }, result: { schema: { type: 'string' }, } }; export const compute = params => params.string.trim();