Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

11
node_modules/tempfile/index.js generated vendored
View File

@@ -1,6 +1,9 @@
'use strict';
const path = require('path');
const uuid = require('uuid');
const tempDir = require('temp-dir');
var path = require('path');
var osTmpdir = require('os-tmpdir');
var uuid = require('uuid');
var TMP_DIR = osTmpdir();
module.exports = ext => path.join(tempDir, uuid.v4() + (ext || ''));
module.exports = function (ext) {
return path.join(TMP_DIR, uuid.v4() + (ext || ''));
};