1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-13 00:40:44 +00:00
notes/node_modules/stylehacks/dist/isMixin.js

14 lines
352 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
'use strict';
exports.__esModule = true;
exports.default = isMixin;
function isMixin(node) {
var selector = node.selector;
// 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'];