summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/node/node_modules/@babel/template/lib/string.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/node/node_modules/@babel/template/lib/string.js')
-rw-r--r--chromium/third_party/node/node_modules/@babel/template/lib/string.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/chromium/third_party/node/node_modules/@babel/template/lib/string.js b/chromium/third_party/node/node_modules/@babel/template/lib/string.js
new file mode 100644
index 00000000000..fa8aade5313
--- /dev/null
+++ b/chromium/third_party/node/node_modules/@babel/template/lib/string.js
@@ -0,0 +1,22 @@
+"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));
+ };
+} \ No newline at end of file