summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/dual-cjs-esm/1.0.0/cjs/main.cjs
blob: 51d32ff89c7d02e9fef4f80d0260a1e09ed3e55a (plain)
1
2
3
4
5
6
7
8
9
10
const root = require("../");
const subPath = require("../subpath");

module.exports.getKind = function() {
  return root.getKind();
};

module.exports.getSubPathKind = function() {
  return subPath.getSubPathKind();
};