UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

17 lines (14 loc) 287 B
'use strict'; /** * Check whether a media feature name is standard * * @param {string} mediaFeatureName * @returns {boolean} */ module.exports = function (mediaFeatureName) { // SCSS interpolation if (/#{.+?}|\$.+?/.test(mediaFeatureName)) { return false; } return true; };