mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
dcc5e51e1c
PR-URL: https://github.com/nodejs/node/pull/27650 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
29 lines
679 B
JavaScript
29 lines
679 B
JavaScript
/* eslint-disable node-core/require-common-first, node-core/required-modules */
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const fixturesDir = path.join(__dirname, '..', 'fixtures');
|
|
|
|
function fixturesPath(...args) {
|
|
return path.join(fixturesDir, ...args);
|
|
}
|
|
|
|
function readFixtureSync(args, enc) {
|
|
if (Array.isArray(args))
|
|
return fs.readFileSync(fixturesPath(...args), enc);
|
|
return fs.readFileSync(fixturesPath(args), enc);
|
|
}
|
|
|
|
function readFixtureKey(name, enc) {
|
|
return fs.readFileSync(fixturesPath('keys', name), enc);
|
|
}
|
|
|
|
module.exports = {
|
|
fixturesDir,
|
|
path: fixturesPath,
|
|
readSync: readFixtureSync,
|
|
readKey: readFixtureKey
|
|
};
|