BaoXs
2022-05-14 3e82664fdde7d5d7db1f8ca257a5d081e8fe9f42
1
2
3
4
5
6
module.exports = function(x) {
  if (Math.abs(x) > 1) {
    x = (x > 1) ? 1 : -1;
  }
  return Math.asin(x);
};