You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							768 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							768 B
						
					
					
				'use strict'; | 
						|
 | 
						|
Object.defineProperty(exports, "__esModule", { | 
						|
    value: true | 
						|
}); | 
						|
 | 
						|
var _plugin = require('../plugin'); | 
						|
 | 
						|
var _plugin2 = _interopRequireDefault(_plugin); | 
						|
 | 
						|
var _browsers = require('../dictionary/browsers'); | 
						|
 | 
						|
var _identifiers = require('../dictionary/identifiers'); | 
						|
 | 
						|
var _postcss = require('../dictionary/postcss'); | 
						|
 | 
						|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | 
						|
 | 
						|
exports.default = (0, _plugin2.default)([_browsers.IE_8], [_postcss.ATRULE], function (rule) { | 
						|
    const params = rule.params.trim(); | 
						|
 | 
						|
    if (params.toLowerCase() === '\\0screen') { | 
						|
        this.push(rule, { | 
						|
            identifier: _identifiers.MEDIA_QUERY, | 
						|
            hack: params | 
						|
        }); | 
						|
    } | 
						|
}); | 
						|
module.exports = exports['default']; |