8a9543790fe60eaca308a15add73c3e0d61306fb
[dotfiles/.git] / isCustomMediaQuery.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Check whether a media query is a custom
6  */
7 module.exports = function(mediaQuery /*: string*/) /*: boolean*/ {
8   return mediaQuery.slice(0, 2) === "--";
9 };