mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 07:40:10 +00:00
Fix incomplete merge
This commit is contained in:
@@ -427,32 +427,7 @@ request.get('http://10.255.255.1', {timeout: 1500}, err => {
|
||||
process.exit(0);
|
||||
});
|
||||
|
||||
<<<<<<< HEAD
|
||||
var rand = Math.floor(Math.random()*100000000).toString();
|
||||
request(
|
||||
{ method: 'PUT'
|
||||
, uri: 'http://mikeal.iriscouch.com/testjs/' + rand
|
||||
, multipart:
|
||||
[ {
|
||||
headers: { 'content-type': 'application/json' }
|
||||
, body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
|
||||
}
|
||||
, { body: 'I am an attachment' }
|
||||
]
|
||||
}
|
||||
, function (error, response, body) {
|
||||
if(response.statusCode == 201){
|
||||
console.log('document saved as: http://mikeal.iriscouch.com/testjs/'+ rand)
|
||||
} else {
|
||||
console.log('error: '+ response.statusCode)
|
||||
console.log(body)
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
=======
|
||||
const rand = Math.floor(Math.random() * 100000000).toString();
|
||||
>>>>>>> master
|
||||
request(
|
||||
{
|
||||
method: 'PUT',
|
||||
|
||||
Reference in New Issue
Block a user