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