mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
|
'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;
|
||
|
};
|