babel/test/fixtures/traceur/Math/acosh.module.js
2015-01-04 19:40:09 +11:00

9 lines
164 B
JavaScript

import {acosh} from '../../../src/runtime/polyfills/Math.js';
function testAcosh(acosh) {
assert.equal(0, acosh(1));
}
testAcosh(acosh);
testAcosh(Math.acosh);