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

9 lines
156 B
JavaScript

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