Skip to content

Instantly share code, notes, and snippets.

@freewil
freewil / keybase.md
Created July 17, 2015 15:45
keybase.md

Keybase proof

I hereby claim:

  • I am freewil on github.
  • I am freewil (https://keybase.io/freewil) on keybase.
  • I have a public key whose fingerprint is 98D0 BF00 ACBC CFFF CC8A 172C 673D 39A5 CBB7 9149

To claim this, I am signing this object:

{
"transactions": [
{
"id": "4",
"transaction_type_cd": "CREDIT",
"transaction_category_cd": "WIRE_US",
"currency_cd": "USD",
"amount": "100000.00000000000000000000",
"transaction_status_cd": "CLEARED",
"created": "2014-08-13T20:33:47.701Z",
{
"transactions": [
{
"id": "3",
"transaction_type_cd": "CREDIT",
"transaction_category_cd": "BITCOIN",
"currency_cd": "BTC",
"amount": "100.00000000000000000000",
"transaction_status_cd": "CLEARED",
"created": "2014-08-13T20:33:47.701Z",
var form = require('express-form'),
field = form.field;
// sync `custom`
form(
field('email')
.required()
.custom(function(email) {
if (!checkUnique(email)) {
throw new Error('Email is not unique');