eejs: Unwrap unnecessarily wrapped line

r-p-opts
Richard Hansen 2021-01-19 18:49:45 -05:00 committed by John McLear
parent 1d6319b852
commit 5987f75b0d
1 changed files with 1 additions and 8 deletions

View File

@ -100,14 +100,7 @@ exports.require = (name, args, mod) => {
paths = mod.paths;
}
const ejspath = resolve.sync(
name,
{
paths,
basedir,
extensions: ['.html', '.ejs'],
}
);
const ejspath = resolve.sync(name, {paths, basedir, extensions: ['.html', '.ejs']});
args.e = exports;
args.require = require;