mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 07:27:19 -04:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
/**
|
|
* Check whether a media query is a custom
|
|
*/
|
|
module.exports = function (mediaQuery/*: string*/)/*: boolean*/ {
|
|
return mediaQuery.slice(0, 2) === "--"
|
|
}
|