Skip to content

Commit f1cfc2a

Browse files
committed
Added .head() method [browser]. Closes #78
1 parent 757e785 commit f1cfc2a

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

lib/superagent.js

+18
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,24 @@ var superagent = function(exports){
651651
return req;
652652
};
653653

654+
/**
655+
* GET `url` with optional callback `fn(res)`.
656+
*
657+
* @param {String} url
658+
* @param {Mixed} data
659+
* @param {Function} fn
660+
* @return {Request}
661+
* @api public
662+
*/
663+
664+
request.head = function(url, data, fn){
665+
var req = request('HEAD', url);
666+
if (isFunction(data)) fn = data, data = null;
667+
if (data) req.send(data);
668+
if (fn) req.end(fn);
669+
return req;
670+
};
671+
654672
/**
655673
* DELETE `url` with optional callback `fn(res)`.
656674
*

test/test.request.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test('request() simple GET', function(next){
2525
});
2626

2727
test('request() simple HEAD', function(next){
28-
request('HEAD', 'test.request.js').end(function(res){
28+
request.head('test.request.js').end(function(res){
2929
assert(res instanceof request.Response, 'respond with Response');
3030
assert(res.ok, 'response should be ok');
3131
assert(!res.text, 'res.text');

0 commit comments

Comments
 (0)