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

44 lines
770 B
JavaScript

/* @flow */
"use strict"
module.exports = function (
statement/*: Object*/,
options/*:: ?: Object*/
)/*: string*/ {
options = options || {}
let result = ""
let rule/*: postcss$rule*/
let atRule/*: postcss$atRule*/
if (statement.type === "rule") {
rule = statement
}
if (statement.type === "atrule") {
atRule = statement
}
if (!rule && !atRule) {
return result
}
const before = (statement.raws.before || "")
if (!options.noRawBefore) {
result += before
}
if (rule) {
result += rule.selector
}
if (atRule) {
result += "@" + atRule.name + (atRule.raws.afterName || "") + atRule.params
}
const between = statement.raws.between
if (between !== undefined) {
result += between
}
return result
}