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

9 lines
167 B
JavaScript

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