1
0
mirror of https://github.com/thangisme/notes.git synced 2024-07-04 02:45:28 +00:00
notes/node_modules/stylelint/lib/utils/isCustomSelector.js

10 lines
186 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/* @flow */
"use strict"
/**
* Check whether a selector is a custom one
*/
module.exports = function (selector/*: string*/)/*: boolean*/ {
return (selector.slice(0, 3) === ":--")
}