NodeEditorUtils.js 278 B

123456789101112
  1. export const exportJSON = ( object, name ) => {
  2. const json = JSON.stringify( object );
  3. const a = document.createElement( 'a' );
  4. const file = new Blob( [ json ], { type: 'text/plain' } );
  5. a.href = URL.createObjectURL( file );
  6. a.download = name + '.json';
  7. a.click();
  8. };