* Prepare URL address to temporary key (for caching) * @param {ServerRequest or String} req * @return {String}
(req)
| 18891 | * @return {String} |
| 18892 | */ |
| 18893 | function createTemporaryKey(req) { |
| 18894 | return (req.uri ? req.uri.pathname : req).replace(REG_TEMPORARY, '_').substring(1); |
| 18895 | } |
| 18896 | |
| 18897 | F.createTemporaryKey = createTemporaryKey; |
| 18898 |
no outgoing calls
no test coverage detected