mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-12 22:52:21 -06:00
15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
/**
|
|
* Check whether a media feature name is standard
|
|
*/
|
|
module.exports = function (mediaFeatureName/*: string*/)/*: boolean*/ {
|
|
// SCSS interpolation
|
|
if (/#{.+?}|\$.+?/.test(mediaFeatureName)) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|