UNPKG

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