UNPKG

math.acosh

Version:

An ES-spec-compliant Math.acosh shim/polyfill/replacement that works as far down as ES3

12 lines (8 loc) 180 B
'use strict'; var acosh = require('../'); var test = require('tape'); var runTests = require('./tests'); test('as a function', function (t) { runTests(acosh, t); t.end(); });