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

9 lines
172 B
JavaScript

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