UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

10 lines (6 loc) 236 B
'use strict'; var IsInteger = require('./IsInteger'); // https://262.ecma-international.org/11.0/#sec-isnonnegativeinteger module.exports = function IsNonNegativeInteger(argument) { return !!IsInteger(argument) && argument >= 0; };