mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-18 07:52:50 +00:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
'use strict';
|
|
|
|
var isInteger = require('../helpers/isInteger');
|
|
|
|
// https://262.ecma-international.org/12.0/#sec-isinteger
|
|
|
|
module.exports = function IsIntegralNumber(argument) {
|
|
return isInteger(argument);
|
|
};
|