Sha256: 9b63ecb5bd9963dd1c596f5dcf82af8063d35f969931400e33aa30d1c18ab659
Contents?: true
Size: 329 Bytes
Versions: 23
Compression:
Stored size: 329 Bytes
Contents
'use strict'; const hasBlock = require('./hasBlock'); /** * @param {import('postcss').AtRule} atRule * @returns {boolean} */ module.exports = function (atRule) { // @ts-ignore TODO TYPES LESS property variable does not exists in types return (atRule.type === 'atrule' && atRule.variable && !hasBlock(atRule)) || false; };
Version data entries
23 entries across 23 versions & 1 rubygems