negation.js 172 B

12345678
  1. 'use strict';
  2. function not(selectors) {
  3. selectors = Array.isArray(selectors) ? selectors : [selectors];
  4. return `:not(${selectors.join(', ')})`;
  5. }
  6. module.exports = not;