diff options
author | 2020-11-18 23:26:45 +0100 | |
---|---|---|
committer | 2020-11-18 23:26:45 +0100 | |
commit | 81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch) | |
tree | 8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/sass-graph/parse-imports.js | |
parent | 1870f3fdf43707a15fda0f609a021f516f45eb63 (diff) | |
download | website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2 website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip |
rm node_modules
Diffstat (limited to 'node_modules/sass-graph/parse-imports.js')
-rw-r--r-- | node_modules/sass-graph/parse-imports.js | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/node_modules/sass-graph/parse-imports.js b/node_modules/sass-graph/parse-imports.js deleted file mode 100644 index 634253e..0000000 --- a/node_modules/sass-graph/parse-imports.js +++ /dev/null @@ -1,64 +0,0 @@ -var tokenizer = require('scss-tokenizer'); - -function parseImports(content, isIndentedSyntax) { - var tokens = tokenizer.tokenize(content); - var results = []; - var tmp = ''; - var inImport = false; - var inParen = false; - var prevToken = tokens[0]; - - var i, token; - for (i = 1; i < tokens.length; i++) { - token = tokens[i]; - - if (inImport && !inParen && token[0] === 'string') { - results.push(token[1]); - } - else if (token[1] === 'import' && prevToken[1] === '@') { - if (inImport && !isIndentedSyntax) { - throw new Error('Encountered invalid @import syntax.'); - } - - inImport = true; - } - else if (inImport && !inParen && (token[0] === 'ident' || token[0] === '/')) { - tmp += token[1]; - } - else if (inImport && !inParen && (token[0] === 'space' || token[0] === 'newline')) { - if (tmp !== '') { - results.push(tmp); - tmp = ''; - - if (isIndentedSyntax) { - inImport = false; - } - } - } - else if (inImport && token[0] === ';') { - inImport = false; - - if (tmp !== '') { - results.push(tmp); - tmp = ''; - } - } - else if (inImport && token[0] === '(') { - inParen = true; - tmp = ''; - } - else if (inParen && token[0] === ')') { - inParen = false; - } - - prevToken = token; - } - - if (tmp !== '') { - results.push(tmp); - } - - return results; -} - -module.exports = parseImports; |