Your IP : 216.73.216.158


Current Path : /home/deltalab/PMS/ims-connector/node_modules/graphql/polyfills/
Upload File :
Current File : //home/deltalab/PMS/ims-connector/node_modules/graphql/polyfills/isInteger.mjs

/* eslint-disable no-redeclare */
// $FlowFixMe[name-already-bound] workaround for: https://github.com/facebook/flow/issues/4441
var isInteger = Number.isInteger || function (value) {
  return typeof value === 'number' && isFinite(value) && Math.floor(value) === value;
};

export default isInteger;