2016-03-23 20:53:09 +01:00
|
|
|
// Copyright 2014 Alvaro J. Genial. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package form implements encoding and decoding of application/x-www-form-urlencoded data.
|
|
|
|
package form
|
|
|
|
|
|
|
|
const (
|
2016-05-04 17:48:12 +02:00
|
|
|
implicitKey = "_"
|
|
|
|
omittedKey = "-"
|
2016-07-21 21:10:33 +02:00
|
|
|
|
|
|
|
defaultDelimiter = '.'
|
|
|
|
defaultEscape = '\\'
|
2016-03-23 20:53:09 +01:00
|
|
|
)
|