2013-08-24 07:26:10 +00:00
|
|
|
module.exports = process.atomBinding 'protocol'
|
2013-08-25 07:07:07 +00:00
|
|
|
|
|
|
|
module.exports.RequestStringJob =
|
|
|
|
class RequestStringJob
|
|
|
|
constructor: ({mimeType, charset, data}) ->
|
|
|
|
if typeof data isnt 'string' and not data instanceof Buffer
|
|
|
|
throw new TypeError('Data should be string or Buffer')
|
|
|
|
|
|
|
|
@mimeType = mimeType ? 'text/plain'
|
|
|
|
@charset = charset ? 'UTF-8'
|
|
|
|
@data = String data
|