GitXplorerGitXplorer
s

json-unescaped-unicode

public
4 stars
0 forks
0 issues

Commits

List of commits on branch develop.
Verified
b2a2df1970025019910c003bef9863d7e28f3e84

Merge pull request #3 from sunaoka/dependabot/npm_and_yarn/npm_and_yarn-0189ad7b96

ssunaoka committed 2 months ago
Verified
16d76c1c81cd35d6b69d1b9a9cdf7b5cec074389

Bump cross-spawn in the npm_and_yarn group across 1 directory

ddependabot[bot] committed 2 months ago
Verified
03ebde998ce959e11657b1dc427bf223bfa89a61

Merge pull request #2 from sunaoka/dependabot/npm_and_yarn/npm_and_yarn-07a849e1ae

ssunaoka committed 4 months ago
Verified
08a1cb2ddba43629955a0706b5fe0a104080e34a

Bump micromatch in the npm_and_yarn group across 1 directory

ddependabot[bot] committed 4 months ago
Verified
6509c1844c7d7028b4d3231ede1279704cec489b

Update GitHub Actions

ssunaoka committed 4 months ago
Verified
c823bc41383611f30ce17f44289869e52814e18d

Update dependencies

ssunaoka committed 6 months ago

README

The README file for this repository.

JSON Unescaped Unicode

Version Test codecov


Unescape Unicode Escape Sequences in JSON.

Features

Features

From

{
    "hello": {
        "English": "Hello",
        "Japanese": "\u3053\u3093\u306b\u3061\u306f",
        "Korean": "\uc548\ub155\ud558\uc138\uc694",
        "Chinese": "\u4f60\u597d",
        "Arabic": "\u0645\u0631\u062d\u0628\u0627",
        "Hindi": "\u0928\u092e\u0938\u094d\u0924\u0947",
        "Ukrainian": "\u041f\u0440\u0438\u0432\u0456\u0442"
    }
}

To

{
    "hello": {
        "English": "Hello",
        "Japanese": "こんにちは",
        "Korean": "안녕하세요",
        "Chinese": "你好",
        "Arabic": "مرحبا",
        "Hindi": "नमस्ते",
        "Ukrainian": "Привіт"
    }
}