The request object that github.com/go-openapi/runtime implements has a .GetBody
method. When you run the .GetBody
method, it writes the ClientRequestWriterFunc
to the req.Body
again.
With Go 1.12 installed:
export class SafeURL extends URL { | |
constructor(url, base) { | |
super( | |
url.replace(/^(http(s?):\/\/)?/, 'http$2://'), | |
base | |
); | |
} | |
} |
CREATE EXTENSION IF NOT EXISTS citext; | |
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
CREATE TABLE users ( | |
id UUID PRIMARY KEY DEFAULT uuid_generate_v1mc(), | |
username citext UNIQUE NOT NULL, | |
email citext UNIQUE NOT NULL, | |
email_confirmed BOOLEAN NOT NULL DEFAULT false, | |
password text | |
); |
CREATE EXTENSION citext; | |
CREATE DOMAIN email_address AS citext | |
CHECK ( | |
value ~ '^[a-zA-Z0-9.!#$%&''*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$' | |
); | |
CREATE TABLE users ( | |
id INT GENERATED ALWAYS AS IDENTITY primary key, |
test 123 |
{ | |
"name": "react-16", | |
"version": "0.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "Bret Comnes <[email protected]> (https://bret.io/)", | |
"license": "MIT", |
import { | |
assertEquals, | |
runTests, | |
test | |
} from "https://deno.land/std/testing/mod.ts"; | |
test({ | |
name: "testing example", | |
fn() { | |
assertEquals("world", "world"); |
node_modules |
function getFormValues (formEl) { | |
return Array.from(new window.FormData(formEl).entries()) | |
.reduce(function (obj, [key, value]) { | |
obj[key] = value | |
return obj | |
}, {}) | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlackColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw | |
LjEwOTA5NTk4MjEgMC4xMDkwOTU5ODIxIDAuMTA5MDk1OTgyMQAQAYAC0hAREhNaJGNs | |
YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp |