Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

toSafeInteger.js 836B

12345678910111213141516171819202122232425262728293031323334353637
  1. var baseClamp = require('./_baseClamp'),
  2. toInteger = require('./toInteger');
  3. /** Used as references for various `Number` constants. */
  4. var MAX_SAFE_INTEGER = 9007199254740991;
  5. /**
  6. * Converts `value` to a safe integer. A safe integer can be compared and
  7. * represented correctly.
  8. *
  9. * @static
  10. * @memberOf _
  11. * @since 4.0.0
  12. * @category Lang
  13. * @param {*} value The value to convert.
  14. * @returns {number} Returns the converted integer.
  15. * @example
  16. *
  17. * _.toSafeInteger(3.2);
  18. * // => 3
  19. *
  20. * _.toSafeInteger(Number.MIN_VALUE);
  21. * // => 0
  22. *
  23. * _.toSafeInteger(Infinity);
  24. * // => 9007199254740991
  25. *
  26. * _.toSafeInteger('3.2');
  27. * // => 3
  28. */
  29. function toSafeInteger(value) {
  30. return value
  31. ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)
  32. : (value === 0 ? value : 0);
  33. }
  34. module.exports = toSafeInteger;