1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-20 22:34:46 -05:00
denoland-deno/tests/testdata/npm/registry/@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();
};