rio-de-js
Version:
Divsense Rio Lib Builder
76 lines (74 loc) • 1.27 kB
JavaScript
module.exports = {
names: [
'abs',
'acos',
'acosh',
'asin',
'asinh',
'atan',
'atanh',
'atan2',
'cbrt',
'ceil',
'clz32',
'cos',
'cosh',
'exp',
'expm1',
'floor',
'fround',
'hypot',
'imul',
'log',
'log1p',
'log10',
'max',
'min',
'pow',
'random',
'round',
'sign',
'sin',
'sinh',
'sqrt',
'tan',
'tanh',
'trunc'
],
functions: [
Math.abs,
Math.acos,
Math.acosh,
Math.asin,
Math.asinh,
Math.atan,
Math.atanh,
Math.atan2,
Math.cbrt,
Math.ceil,
Math.clz32,
Math.cos,
Math.cosh,
Math.exp,
Math.expm1,
Math.floor,
Math.fround,
Math.hypot,
Math.imul,
Math.log,
Math.log1p,
Math.log10,
Math.max,
Math.min,
Math.pow,
Math.random,
Math.round,
Math.sign,
Math.sin,
Math.sinh,
Math.sqrt,
Math.tan,
Math.tanh,
Math.trunc
]
};