.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / isStandardSyntaxMediaFeatureName.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check whether a media feature name is standard
6  */
7 module.exports = function(mediaFeatureName /*: string*/) /*: boolean*/ {
8   // SCSS interpolation
9   if (/#{.+?}|\$.+?/.test(mediaFeatureName)) {
10     return false;
11   }
12
13   return true;
14 };