Helper functions and functional utilities to use within your Pipedream workflows
Accepts a base64-encoded string, returns a decoded UTF-8 string
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Get the difference, intersection, union, or symetric difference of two arrays/sets.
Converts an HTML string to the Slack mrkdwn format using
Pipedream provides a set of helper functions that make it easy to manipulate
and work with data in your workflow. You can use these helper functions to:
Here are some examples of what you can build using the Helper Functions API:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})