tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

utf8.js (164B)


      1 toUtf8 = function( o ) { return new TextEncoder().encode( JSON.stringify( o ) ); }
      2 fromUtf8 = function( t ) { return JSON.parse( new TextDecoder().decode( t ) ); }