isMixin.js 377 B

1234567891011121314151617181920
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isMixin;
  6. function isMixin(node) {
  7. const {
  8. selector
  9. } = node; // If the selector ends with a ':' it is likely a part of a custom mixin.
  10. if (!selector || selector[selector.length - 1] === ':') {
  11. return true;
  12. }
  13. return false;
  14. }
  15. module.exports = exports.default;