9 lines
156 B
JavaScript
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);
|