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/postcss-jsx/template-safe-parse.js')
-rw-r--r--assets/node_modules/postcss-jsx/template-safe-parse.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/assets/node_modules/postcss-jsx/template-safe-parse.js b/assets/node_modules/postcss-jsx/template-safe-parse.js
deleted file mode 100644
index 01f5898..0000000
--- a/assets/node_modules/postcss-jsx/template-safe-parse.js
+++ /dev/null
@@ -1,14 +0,0 @@
-"use strict";
-
-const TemplateSafeParser = require("./template-safe-parser");
-const Input = require("postcss/lib/input");
-
-function templateSafeParse (css, opts) {
- const input = new Input(css, opts);
- input.quasis = opts.quasis;
- const parser = new TemplateSafeParser(input);
- parser.parse();
-
- return parser.root;
-}
-module.exports = templateSafeParse;