]> gerrit.simantics Code Review - simantics/district.git/blob - shim.js
692acdd6ca77992d02abf183ec3089bec4b61b88
[simantics/district.git] / shim.js
1 'use strict';
2
3 var isInteger = require('../is-integer/shim')
4   , maxValue  = require('../max-safe-integer')
5
6   , abs = Math.abs;
7
8 module.exports = function (value) {
9         if (!isInteger(value)) return false;
10         return abs(value) <= maxValue;
11 };