Welcome to mirror list, hosted at ThFree Co, Russian Federation.

module.js « lib - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4a6dd7d18de56420ec4c3f0bc36cd927c52858a (plain)
1
2
3
4
5
6
7
8
9
'use strict';

const { findSourceMap } = require('internal/source_map/source_map_cache');
const { Module } = require('internal/modules/cjs/loader');
const { SourceMap } = require('internal/source_map/source_map');

Module.findSourceMap = findSourceMap;
Module.SourceMap = SourceMap;
module.exports = Module;