dsl-framework
Version:
Easy function chaining.
14 lines • 368 B
JavaScript
var module = {
exports: {}
};
var exports = module.exports;
/* eslint-disable brace-style */
/* eslint-disable block-spacing */
module.exports = exports = (data, callback) => {
let timeoutSate = null;
if (callback && typeof callback === 'function') {
timeoutSate = setTimeout(callback, 0, 2, data);
}
return timeoutSate;
};
export default module.exports;