mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 16:25:58 +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);
|
|
});
|