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