UNPKG

http-server

Version:

A simple zero-configuration command-line http server

10 lines (8 loc) 197 B
'use strict'; module.exports = (stat, weakEtag) => { let etag = `"${[stat.ino, stat.size, stat.mtime.toISOString()].join('-')}"`; if (weakEtag) { etag = `W/${etag}`; } return etag; };