blob: c85aad6a1f14281fe187024e1e9e6ee8016c885f [file] [log] [blame]
/* @flow */
"use strict";
/**
* Check whether a selector is a custom one
*/
module.exports = function(selector /*: string*/) /*: boolean*/ {
return selector.slice(0, 3) === ":--";
};