11 lines
257 B
JavaScript
Raw Normal View History

2024-07-07 18:49:38 -07:00
const TemplatePath = require("./src/TemplatePath.js");
const isPlainObject = require("./src/IsPlainObject.js");
const Merge = require("./src/Merge.js");
const { DeepCopy } = Merge;
module.exports = {
TemplatePath,
isPlainObject,
Merge,
DeepCopy,
};