69809f3cf4956d98b19d8780ed5f368caf1d3e3e
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function () {
4         var cbrt = Math.cbrt;
5         if (typeof cbrt !== 'function') return false;
6         return cbrt(2) === 1.2599210498948732;
7 };