Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isCustomMediaQuery.js « utils « lib « stylelint « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc4beede00b0f771d6f2cf6833f166c77b9024e2 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

/**
 * Check whether a media query is a custom
 * @param {string} mediaQuery
 * @returns {boolean}
 */
module.exports = function(mediaQuery) {
	return mediaQuery.startsWith('--');
};