17 lines
		
	
	
		
			672 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			672 B
		
	
	
	
		
			JavaScript
		
	
	
	
| "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
 |