JSFiddle - React, Tailwind, and code Playground

by andypotanin

JavaScript

jQuery.get( 'https://gist.githubusercontent.com/that1guy/fb2842c7897b385d3a45/raw/gistfile1.txt', function( data ) {

    console.clear();
    
    data = data.replace(/\\/g,"\\\\");
	//data = data.replace( '\/', 'as' );
                        
    var parsed = JSON.parse( data );
    
    console.log( 'parsed', parsed );

});