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);
|
||
|
|
});
|