UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

7 lines (6 loc) 166 B
/** * @param {unknown} value */ export default function isNonNegativeInteger(value) { return Number.isInteger(value) && typeof value === 'number' && value >= 0; }