UNPKG

447 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.ceilDocs = void 0;
7var ceilDocs = {
8 name: 'ceil',
9 category: 'Arithmetic',
10 syntax: ['ceil(x)'],
11 description: 'Round a value towards plus infinity. If x is complex, both real and imaginary part are rounded towards plus infinity.',
12 examples: ['ceil(3.2)', 'ceil(3.8)', 'ceil(-4.2)'],
13 seealso: ['floor', 'fix', 'round']
14};
15exports.ceilDocs = ceilDocs;
\No newline at end of file