UNPKG

@nodescript/stdlib

Version:
19 lines (18 loc) 389 B
export const module = { version: '1.0.4', moduleName: 'Math / Arccos', description: ` Computes the arccosine of specified angle in radians. `, params: { value: { schema: { type: 'number' }, }, }, result: { schema: { type: 'number' }, } }; export const compute = params => { return Math.acos(params.value); };