forked from enviPath/enviPy
Current Dev State
This commit is contained in:
14
static/js/ketcher2/node_modules/nyc/lib/hash.js
generated
vendored
Normal file
14
static/js/ketcher2/node_modules/nyc/lib/hash.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
const CACHE_VERSION = require('../package.json').version
|
||||
const md5hex = require('md5-hex')
|
||||
const salt = JSON.stringify({
|
||||
istanbul: require('istanbul-lib-coverage/package.json').version,
|
||||
nyc: CACHE_VERSION
|
||||
})
|
||||
|
||||
function Hash (code, filename) {
|
||||
return md5hex([code, filename, salt]) + '_' + CACHE_VERSION
|
||||
}
|
||||
|
||||
Hash.salt = salt
|
||||
|
||||
module.exports = Hash
|
||||
Reference in New Issue
Block a user