1e38057c80bc19525c67626d60e455cb715e582c
[dotfiles/.git] / 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 };