UNPKG

198 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check whether a selector is a custom one
5 *
6 * @param {string} selector
7 * @returns {boolean}
8 */
9module.exports = function (selector) {
10 return selector.startsWith(':--');
11};