c85aad6a1f14281fe187024e1e9e6ee8016c885f
[dotfiles/.git] / isCustomSelector.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check whether a selector is a custom one
6  */
7 module.exports = function(selector /*: string*/) /*: boolean*/ {
8   return selector.slice(0, 3) === ":--";
9 };