Sha256: 293a5d20e4faa98126f5440dfc147c77e2360963614f537ceaf9cc69d8885168
Contents?: true
Size: 390 Bytes
Versions: 26
Compression:
Stored size: 390 Bytes
Contents
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isMixin; function isMixin(node) { const { selector } = node; // If the selector ends with a ':' it is likely a part of a custom mixin. if (!selector || selector[selector.length - 1] === ':') { return true; } return false; } module.exports = exports['default'];
Version data entries
26 entries across 25 versions & 8 rubygems