liudong
2023-05-29 340f156319b863525e50e900c58e59b86ecb3d5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*!
    strip-json-comments
    Strip comments from JSON. Lets you use comments in your JSON files!
    https://github.com/sindresorhus/strip-json-comments
    by Sindre Sorhus
    MIT License
*/
(function () {
    'use strict';
 
    var singleComment = 1;
    var multiComment = 2;
 
    function stripJsonComments(str) {
        var currentChar;
        var nextChar;
        var insideString = false;
        var insideComment = false;
        var ret = '';
 
        for (var i = 0; i < str.length; i++) {
            currentChar = str[i];
            nextChar = str[i + 1];
 
            if (!insideComment && currentChar === '"') {
                var escaped = str[i - 1] === '\\' && str[i - 2] !== '\\';
                if (!insideComment && !escaped && currentChar === '"') {
                    insideString = !insideString;
                }
            }
 
            if (insideString) {
                ret += currentChar;
                continue;
            }
 
            if (!insideComment && currentChar + nextChar === '//') {
                insideComment = singleComment;
                i++;
            } else if (insideComment === singleComment && currentChar + nextChar === '\r\n') {
                insideComment = false;
                i++;
                ret += currentChar;
                ret += nextChar;
                continue;
            } else if (insideComment === singleComment && currentChar === '\n') {
                insideComment = false;
            } else if (!insideComment && currentChar + nextChar === '/*') {
                insideComment = multiComment;
                i++;
                continue;
            } else if (insideComment === multiComment && currentChar + nextChar === '*/') {
                insideComment = false;
                i++;
                continue;
            }
 
            if (insideComment) {
                continue;
            }
 
            ret += currentChar;
        }
 
        return ret;
    }
 
    if (typeof module !== 'undefined' && module.exports) {
        module.exports = stripJsonComments;
    } else {
        window.stripJsonComments = stripJsonComments;
    }
})();