UNPKG

eslint-plugin-unicorn-x

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