floor.js (324B)
1 export var floorDocs = { 2 name: 'floor', 3 category: 'Arithmetic', 4 syntax: ['floor(x)'], 5 description: 'Round a value towards minus infinity.If x is complex, both real and imaginary part are rounded towards minus infinity.', 6 examples: ['floor(3.2)', 'floor(3.8)', 'floor(-4.2)'], 7 seealso: ['ceil', 'fix', 'round'] 8 };