Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint-scss/node_modules/postcss-selector-parser/dist/util/unesc.js')
-rw-r--r--assets/node_modules/stylelint-scss/node_modules/postcss-selector-parser/dist/util/unesc.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/assets/node_modules/stylelint-scss/node_modules/postcss-selector-parser/dist/util/unesc.js b/assets/node_modules/stylelint-scss/node_modules/postcss-selector-parser/dist/util/unesc.js
deleted file mode 100644
index ae12869..0000000
--- a/assets/node_modules/stylelint-scss/node_modules/postcss-selector-parser/dist/util/unesc.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-exports.__esModule = true;
-exports.default = unesc;
-var whitespace = '[\\x20\\t\\r\\n\\f]';
-var unescapeRegExp = new RegExp('\\\\([\\da-f]{1,6}' + whitespace + '?|(' + whitespace + ')|.)', 'ig');
-
-function unesc(str) {
- return str.replace(unescapeRegExp, function (_, escaped, escapedWhitespace) {
- var high = '0x' + escaped - 0x10000; // NaN means non-codepoint
- // Workaround erroneous numeric interpretation of +"0x"
- // eslint-disable-next-line no-self-compare
-
- return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint
- String.fromCharCode(high + 0x10000) : // Supplemental Plane codepoint (surrogate pair)
- String.fromCharCode(high >> 10 | 0xd800, high & 0x3ff | 0xdc00);
- });
-}
-
-module.exports = exports.default; \ No newline at end of file