Is There a Syntax for a Date Placeholder that Functions Like (now() AT TIME ZONE ‘utc’::text)?

In JavaScript, you can get the current date and time in UTC format using the Date object. Here’s an example of how you can achieve this within a Pipedream component: ```
export default defineComponent({ async run({ steps, $ }) { // Get the current date and time in UTC format const currentDate = new Date().toISOString(); // Your code here, using currentDate as needed return currentDate; }, });