UNPKG

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