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.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							598 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							598 B
						
					
					
				| "use strict";
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|   value: true
 | |
| });
 | |
| exports.default = stringTemplate;
 | |
| var _options = require("./options");
 | |
| var _parse = require("./parse");
 | |
| var _populate = require("./populate");
 | |
| function stringTemplate(formatter, code, opts) {
 | |
|   code = formatter.code(code);
 | |
|   let metadata;
 | |
|   return arg => {
 | |
|     const replacements = (0, _options.normalizeReplacements)(arg);
 | |
|     if (!metadata) metadata = (0, _parse.default)(formatter, code, opts);
 | |
|     return formatter.unwrap((0, _populate.default)(metadata, replacements));
 | |
|   };
 | |
| }
 | |
| 
 | |
| //# sourceMappingURL=string.js.map
 |