@nodescript/stdlib
Version:
Standard Node Definitions
15 lines (14 loc) • 350 B
JavaScript
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();