Skip to content

johansteffner/responsive.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple responsive checking library

Example

var responsive = require('responsive-js');
var r = responsive({
        "portable": "screen and (max-width: 1023px)",
        "desk":     "screen and (min-width: 1024px)",
    });
    
console.log(r.is('desk'));