Last active
September 30, 2022 16:40
-
-
Save scripting/f2a07f405291110347bf8a4e6a5442f4 to your computer and use it in GitHub Desktop.
Hello World filter.js for PagePark
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//hello world filter.js for PagePark -- 9/30/22 by DW | |
const headers = {["Content-Type"]: "text/plain"}; | |
options.httpResponse.writeHead (200, headers); | |
options.httpResponse.end ("Hello World"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment