first commit
This commit is contained in:
12
node_modules/stylelint/lib/utils/isNonNegativeInteger.cjs
generated
vendored
Normal file
12
node_modules/stylelint/lib/utils/isNonNegativeInteger.cjs
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @param {unknown} value
|
||||
*/
|
||||
function isNonNegativeInteger(value) {
|
||||
return Number.isInteger(value) && typeof value === 'number' && value >= 0;
|
||||
}
|
||||
|
||||
module.exports = isNonNegativeInteger;
|
||||
Reference in New Issue
Block a user