UNPKG

stylelint

Version:

A mighty, modern CSS linter.

9 lines (7 loc) 184 B
'use strict'; /** * @param {unknown} value */ module.exports = function isNonNegativeInteger(value) { return Number.isInteger(value) && typeof value === 'number' && value >= 0; };