UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

13 lines (11 loc) 217 B
/* 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;