Files
wechatpay-enterprise-web/node_modules/es-abstract/2018/IsInteger.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

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);
};