blob: 1b58a8a7eb209968d08352000c7ae6007b7396d9 [file] [log] [blame]
'use strict';
/**
* Check whether a selector is a custom one
*
* @param {string} selector
* @returns {boolean}
*/
module.exports = function (selector) {
return selector.startsWith(':--');
};