csc.js (363B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.cscDocs = void 0; 7 var cscDocs = { 8 name: 'csc', 9 category: 'Trigonometry', 10 syntax: ['csc(x)'], 11 description: 'Compute the cosecant of x in radians. Defined as 1/sin(x)', 12 examples: ['csc(2)', '1 / sin(2)'], 13 seealso: ['sec', 'cot', 'sin'] 14 }; 15 exports.cscDocs = cscDocs;