github.com/twilio/twilio-go@v1.20.1/client/form/form.go (about)

     1  // Forked code from https://github.com/ajg/form
     2  
     3  // Copyright 2014 Alvaro J. Genial. All rights reserved.
     4  // Use of this source code is governed by a BSD-style
     5  // license that can be found in the LICENSE file.
     6  
     7  // Package form implements encoding and decoding of application/x-www-form-urlencoded data.
     8  package form
     9  
    10  const (
    11  	implicitKey = "_"
    12  	omittedKey  = "-"
    13  
    14  	defaultDelimiter = '.'
    15  	defaultEscape    = '\\'
    16  	defaultKeepZeros = false
    17  )