Files
red_de_investigacion_front/node_modules/webpack/lib/NullFactory.js
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

13 lines
217 B
JavaScript

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
class NullFactory {
create(data, callback) {
return callback();
}
}
module.exports = NullFactory;