Name: js-handler/node_modules/restify/lib/http_date.js
| 1: | // Copyright 2012 Mark Cavage, Inc. All rights reserved. |
| 2: | |
| 3: | module.exports = function httpDate(now) { |
| 4: | if (!now) |
| 5: | now = new Date(); |
| 6: | |
| 7: | return (now.toUTCString()); |
| 8: | }; |
