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

9 lines
164 B
JavaScript

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