mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
|
const root = require("../");
|
||
|
const subPath = require("../subpath");
|
||
|
|
||
|
module.exports.getKind = function() {
|
||
|
return root.getKind();
|
||
|
};
|
||
|
|
||
|
module.exports.getSubPathKind = function() {
|
||
|
return subPath.getSubPathKind();
|
||
|
};
|