aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/expand-template/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/expand-template/index.js')
-rw-r--r--node_modules/expand-template/index.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/expand-template/index.js b/node_modules/expand-template/index.js
new file mode 100644
index 0000000..e182837
--- /dev/null
+++ b/node_modules/expand-template/index.js
@@ -0,0 +1,26 @@
+module.exports = function (opts) {
+ var sep = opts ? opts.sep : '{}'
+ var len = sep.length
+
+ var whitespace = '\\s*'
+ var left = escape(sep.substring(0, len / 2)) + whitespace
+ var right = whitespace + escape(sep.substring(len / 2, len))
+
+ return function (template, values) {
+ Object.keys(values).forEach(function (key) {
+ var value = String(values[key]).replace(/\$/g, '$$$$')
+ template = template.replace(regExp(key), value)
+ })
+ return template
+ }
+
+ function escape (s) {
+ return [].map.call(s, function (char) {
+ return '\\' + char
+ }).join('')
+ }
+
+ function regExp (key) {
+ return new RegExp(left + key + right, 'g')
+ }
+}