GitXplorerGitXplorer
s

json-unescaped-unicode

public
4 stars
0 forks
0 issues

Commits

List of commits on branch develop.
Verified
ee7e18166b952e08dcc43696a34d563de8bc32b0

Migration from `vsce` to `@vscode/vsce`.

ssunaoka committed 9 months ago
Verified
6bd8d82b90325b7f05c66ac9c6a4cc5f0a7020b0

Merge tag 'v1.0.0' into develop

ssunaoka committed 9 months ago
Verified
c4942bffb8168f432fe2a1c0c94cbecf10d26541

Merge branch 'release/v1.0.0'

ssunaoka committed 9 months ago
Verified
ef0d838b11d3f9f340d69e5cd299bee999742069

Bump up version

ssunaoka committed 9 months ago
Verified
a86ab70ee778b7aa3597594da49241951536d27e

Update demo

ssunaoka committed 9 months ago
Verified
6cc29e769b52b0aeabf7796610a2e8e4deb9926e

Internationalization support

ssunaoka committed 9 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": "Привіт"
    }
}