Files
NativeScript/apps/automated/app/http/http-string-worker.ts

13 lines
200 B
TypeScript

import * as http from '@nativescript/core/http';
declare var postMessage: any;
http.getString('https://httpbin.org/get').then(
function (r) {
postMessage(r);
},
function (e) {
throw e;
}
);