mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 06:48:24 -04:00
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
'use strict';
|
|
|
|
var isInteger = require('math-intrinsics/isInteger');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-isinteger
|
|
|
|
module.exports = function IsInteger(argument) {
|
|
return isInteger(argument);
|
|
};
|