UNPKG

eslint-plugin-unicorn

Version:
9 lines (7 loc) 233 B
import {isNumericLiteral} from './literal.js'; export default function isNegativeOne(node) { return node?.type === 'UnaryExpression' && node.operator === '-' && isNumericLiteral(node.argument) && node.argument.value === 1; }