1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/tests/registry/npm/@denotest/dual-cjs-esm/1.0.0/cjs/main.cjs

11 lines
219 B
JavaScript
Raw Normal View History

const root = require("../");
const subPath = require("../subpath");
module.exports.getKind = function() {
return root.getKind();
};
module.exports.getSubPathKind = function() {
return subPath.getSubPathKind();
};