cube.js 381 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.cubeDocs = void 0;
  6. var cubeDocs = {
  7. name: 'cube',
  8. category: 'Arithmetic',
  9. syntax: ['cube(x)'],
  10. description: 'Compute the cube of a value. The cube of x is x * x * x.',
  11. examples: ['cube(2)', '2^3', '2 * 2 * 2'],
  12. seealso: ['multiply', 'square', 'pow']
  13. };
  14. exports.cubeDocs = cubeDocs;