UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

12 lines (8 loc) 239 B
"use strict"; var isInteger = require("../is-integer/shim") , maxValue = require("../max-safe-integer") , abs = Math.abs; module.exports = function (value) { if (!isInteger(value)) return false; return abs(value) <= maxValue; };