Programmed implementation of jsonp format, powered by Demo Macro.
# npm
$ npm install @docen/jsonp
# yarn
$ yarn add @docen/jsonp
# pnpm
$ pnpm add @docen/jsonp
import { convertJSONPToJSON } from "@docen/jsonp";
const jsonp = `callbackFunction({"key": "value"})`;
convertJSONPToJSON(jsonp);
// {"key": "value"}