]> git.r.bdr.sh - rbdr/dotfiles/blob
3e8cde1f0053dd9bcfcd70ac8c65ee189f045fae
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function () {
4 var trunc = Math.trunc;
5 if (typeof trunc !== 'function') return false;
6 return (trunc(13.67) === 13) && (trunc(-13.67) === -13);
7 };