Search.../

functionName

Returns the function name of a call to an HTTP function.

Description

Premium sites: Premium site URL

Free sites: Free site URL

Type:

stringRead Only

Was this helpful?

Get the function name of a call to an HTTP function

Copy Code
1// In http-functions.js
2
3export function use_myFunction(request) {
4
5 let functionName = request.functionName; // myFunction
6
7}