JSON.minify icon indicating copy to clipboard operation
JSON.minify copied to clipboard

not remove last whitespaces

Open talltotal opened this issue 4 years ago • 0 comments

    it('remove whitespace', function() {
        var json = '{ " k e y ":   " va lue"       } ';
        var res = JSON.minify(json);
        res.should.equal('{" k e y ":" va lue"}');
    });

// but get
`{" k e y ":" va lue"       } `

talltotal avatar Dec 24 '19 07:12 talltotal