aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/lib/ModuleReason.js
blob: 9999520693812a6e2a9f1c876b75e85a25e74bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

module.exports = class ModuleReason {
	constructor(module, dependency) {
		this.module = module;
		this.dependency = dependency;
	}
};