mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 23:59:29 +08:00
9 lines
236 B
Text
9 lines
236 B
Text
'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;
|
|
};
|