djekl
2/6/2016 - 3:41 PM

Feature Detection!

Feature Detection!

(function () {
  'use strict';
  
  var detect = function detect(property, value) {
    if (window.CSS && window.CSS.supports) {
      return window.CSS.supports(property, value);
    }
    else {
      return false;
    }
  };
  
  window.detect = detect;
  
}());