UNPKG

251 BJavaScriptView Raw
1var annotate = require('annotate');
2var is = require('annois');
3
4
5module.exports = annotate('asin', 'Returns the arcsine (in radians) of a number').
6 on(function betweenOnes(a) {
7 return is.number(a) && -1 <= a && a <= 1;
8 }, Math.asin);