offsnore/wundernode

add rawtide method

Closed this issue · 1 comments

Can you please add this method to wundernode.js ??

that.rawtide = function (query, callback) {
    var path = "/rawtide/q/" + query + format;
    get(callback, null, path);
};

and

that.tide = function (query, callback) {
    var path = "/tide/q/" + query + format;
    get(callback, null, path);
};

Thanks :)

Fixed in 24350f1. Thanks for the request, sorry for never resolving!