1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-30 13:56:01 -04:00
notes/node_modules/stylelint/lib/utils/isCustomPropertySet.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

15 lines
399 B
JavaScript

/* @flow */
"use strict"
const _ = require("lodash")
const hasBlock = require("../utils/hasBlock")
/**
* Check whether a Node is a custom property set
*/
module.exports = function (node/*: Object*/)/*: boolean*/ {
const selector = _.get(node, "raws.selector.raw", node.selector)
return node.type === "rule" && hasBlock(node) && selector.slice(0, 2) === "--" && selector.slice(-1) === ":"
}