UNPKG

@nodescript/stdlib

Version:
15 lines (14 loc) 350 B
export const module = { version: '1.1.4', moduleName: 'String / Lower Case', description: 'Transforms a string to lower case.', params: { string: { schema: { type: 'string' }, } }, result: { schema: { type: 'string' }, } }; export const compute = params => params.string.toLowerCase();