asin.js 368 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.asinDocs = void 0;
  6. var asinDocs = {
  7. name: 'asin',
  8. category: 'Trigonometry',
  9. syntax: ['asin(x)'],
  10. description: 'Compute the inverse sine of a value in radians.',
  11. examples: ['asin(0.5)', 'asin(sin(0.5))'],
  12. seealso: ['sin', 'acos', 'atan']
  13. };
  14. exports.asinDocs = asinDocs;