aboutsummaryrefslogtreecommitdiff
path: root/node_modules/preserve/index.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/preserve/index.js
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/preserve/index.js')
-rw-r--r--node_modules/preserve/index.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/node_modules/preserve/index.js b/node_modules/preserve/index.js
new file mode 100644
index 000000000..a6c5d481d
--- /dev/null
+++ b/node_modules/preserve/index.js
@@ -0,0 +1,54 @@
+/*!
+ * preserve <https://github.com/jonschlinkert/preserve>
+ *
+ * Copyright (c) 2014-2015, Jon Schlinkert.
+ * Licensed under the MIT license.
+ */
+
+'use strict';
+
+/**
+ * Replace tokens in `str` with a temporary, heuristic placeholder.
+ *
+ * ```js
+ * tokens.before('{a\\,b}');
+ * //=> '{__ID1__}'
+ * ```
+ *
+ * @param {String} `str`
+ * @return {String} String with placeholders.
+ * @api public
+ */
+
+exports.before = function before(str, re) {
+ return str.replace(re, function (match) {
+ var id = randomize();
+ cache[id] = match;
+ return '__ID' + id + '__';
+ });
+};
+
+/**
+ * Replace placeholders in `str` with original tokens.
+ *
+ * ```js
+ * tokens.after('{__ID1__}');
+ * //=> '{a\\,b}'
+ * ```
+ *
+ * @param {String} `str` String with placeholders
+ * @return {String} `str` String with original tokens.
+ * @api public
+ */
+
+exports.after = function after(str) {
+ return str.replace(/__ID(.{5})__/g, function (_, id) {
+ return cache[id];
+ });
+};
+
+function randomize() {
+ return Math.random().toString().slice(2, 7);
+}
+
+var cache = {}; \ No newline at end of file