/**
* Check whether a selector is standard
*
* @param {string} selector
* @return {boolean} If `true`, the selector is standard
*/exportdefaultfunction (selector) {
// SCSS or Less interpolationif (/#{.+?}|@{.+?}|\$\(.+?\)/.test(selector)) { returnfalse }
returntrue
}