shell-ahk
Version:
`Lodash`/`jQuery` for `AHK`.
25 lines (16 loc) • 604 B
text/coffeescript
# -check
import mathShell_noop from './noop'
class MathShell
###* import('./mathShell').MathShell['abs'] ###
abs: (n) -> Abs n
###* import('./mathShell').MathShell['ceil'] ###
ceil: (n) -> Ceil n
###* import('./mathShell').MathShell['floor'] ###
floor: (n) -> Floor n
###* import('./mathShell').MathShell['max'] ###
max: (numbers...) -> Max numbers...
###* import('./mathShell').MathShell['min'] ###
min: (numbers...) -> Min numbers...
###* import('./mathShell').MathShell['round'] ###
round: (n) -> Round n
mathShell_noop MathShell