update node_modules

This commit is contained in:
bitkarrot
2022-03-21 00:06:21 -07:00
parent a725bca03a
commit c6038ac85d
1156 changed files with 0 additions and 207393 deletions

View File

@@ -1,23 +0,0 @@
/*
* Copyright (c) 2014, Yahoo Inc. All rights reserved.
* Copyrights licensed under the New BSD License.
* See the accompanying LICENSE file for terms.
*/
"use strict";
const ExpressHandlebars = require("./lib/express-handlebars");
exports = module.exports = exphbs;
exports.create = create;
exports.ExpressHandlebars = ExpressHandlebars;
// -----------------------------------------------------------------------------
function exphbs (config) {
return create(config).engine;
}
function create (config) {
return new ExpressHandlebars(config);
}