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.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							672 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							672 B
						
					
					
				| "use strict"; | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.backgroundPosition = void 0; | |
| var parser_1 = require("../syntax/parser"); | |
| var length_percentage_1 = require("../types/length-percentage"); | |
| exports.backgroundPosition = { | |
|     name: 'background-position', | |
|     initialValue: '0% 0%', | |
|     type: 1 /* LIST */, | |
|     prefix: false, | |
|     parse: function (_context, tokens) { | |
|         return parser_1.parseFunctionArgs(tokens) | |
|             .map(function (values) { return values.filter(length_percentage_1.isLengthPercentage); }) | |
|             .map(length_percentage_1.parseLengthPercentageTuple); | |
|     } | |
| }; | |
| //# sourceMappingURL=background-position.js.map
 |