mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
6934792eb3
PR-URL: https://github.com/nodejs/node/pull/18566 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
29 lines
647 B
JavaScript
29 lines
647 B
JavaScript
/* eslint-disable 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
|
|
};
|