mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 18:16:01 +00:00
6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
|
|
import type from "./type";
|
||
|
|
|
||
|
|
export default type("application/json", function(xhr) {
|
||
|
|
return JSON.parse(xhr.responseText);
|
||
|
|
});
|