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
// Replacement for setTimeout/clearTimeout in Cloudflare Workers | |
// Avoids "Cannot clear a timeout created in a different request context" error | |
// | |
// Usage: | |
// import { setTimeout, clearTimeout } from "./cloudflare-timeout.mjs" | |
// | |
// Author: Vanessa "Codefrau" Freudenberg <[email protected]> | |
export function setTimeout(func, ...opts) { | |
const timeout = { cancelled: false }; |
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
// Replacement for setTimeout/clearTimeout in Cloudflare Workers | |
// Avoids "Cannot clear a timeout created in a different request context" error | |
// | |
// Usage: | |
// import { setTimeout, clearTimeout } from "./cloudflare-timeout.mjs" | |
// | |
// Author: Vanessa "Codefrau" Freudenberg <[email protected]> | |
export function setTimeout(func, ...args) { | |
const timeout = { cancelled: false }; |
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
msgid "" | |
msgstr "" | |
"Project-Id-Version: Etoys Plugin Launcher\n" | |
"POT-Creation-Date: 2011-05-10 17:59-0000\n" | |
"PO-Revision-Date: 2011-05-10 18:52-0300\n" | |
"Last-Translator: Name <[email protected]>\n" | |
"Language-Team: Spanish\n" | |
"MIME-Version: 1.0\n" | |
"Content-Type: text/plain; charset=UTF-8\n" | |
"Content-Transfer-Encoding: 8bit\n" |