@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 582 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Expand URL
* @section Content Types > Web > URLs
* @icon URL
*
* This action expands and cleans up URLs which have been shortened using a URL shortening service like TinyURL or Bit.ly.
*
* ```js
* expandURL();
* ```
*/
const expandURL = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.url.expand',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(expandURL);
//# sourceMappingURL=expandURL.js.map