Compare commits

..

No commits in common. "master" and "fs-cache-fast_v1.0.1" have entirely different histories.

4 changed files with 2 additions and 13 deletions

View File

@ -2,7 +2,6 @@ on:
push:
branches:
- master
- meme
jobs:
deploy:

View File

@ -10,7 +10,7 @@ export default class FSCache {
this.fsPromises = fsPromises || fsPromisesOriginal
this.id = crypto.randomBytes(15).toString('base64').replace(/\//g, '-')
this.prefix = (options.ns || options.prefix || '') + '-'
this.prefix = options.prefix ? options.prefix + '-' : '-'
this.hash_alg = options.hash_alg || 'md5'
this.cache_dir = options.cache_dir || path.join(os.tmpdir(), this.id)
this.ttl = options.ttl || 0

View File

@ -1,6 +1,6 @@
{
"name": "fs-cache-fast",
"version": "1.0.3",
"version": "1.0.1",
"description": "Cache stored on the file system",
"main": "index.mjs",
"scripts": {

View File

@ -61,16 +61,6 @@ t.describe('#constructor()', function() {
assert.strictEqual(cache.ttl, assertTtl)
})
t.test('supports alternative way of specifying prefix', function() {
const assertPrefix = 'blablabutmore'
let cache = createCache({
ns: assertPrefix,
})
assert.strictEqual(cache.prefix, assertPrefix + '-')
})
t.test('should create the directory by default', function() {
assert.notOk(fsSync.mkdirSync.called)
let cache = createCache({})