UNPKG

204 BJavaScriptView Raw
1var annotate = require('annotate');
2var is = require('annois');
3
4
5module.exports = annotate('atan2', 'Returns the arctangent of the quotient of its arguments.').
6 on(is.number, is.number, Math.atan2);