Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (function () {
  2. 'use strict';
  3.  
  4. var detect = function detect(property, value) {
  5. if (window.CSS && window.CSS.supports) {
  6. return window.CSS.supports(property, value);
  7. }
  8. else {
  9. return false;
  10. }
  11. };
  12.  
  13. window.detect = detect;
  14.  
  15. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement