261f50701a
This is only used for writing specs.
20 lines
574 B
CoffeeScript
20 lines
574 B
CoffeeScript
protocol = process.atomBinding 'protocol'
|
|
EventEmitter = require('events').EventEmitter
|
|
|
|
protocol[key] = value for key, value of EventEmitter.prototype
|
|
|
|
protocol.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
|
|
|
|
protocol.RequestFileJob =
|
|
class RequestFileJob
|
|
constructor: (@path) ->
|
|
|
|
module.exports = protocol
|