msgs
Version:
Message oriented programming for JavaScript
22 lines (18 loc) • 433 B
JavaScript
/*
* Copyright 2013 the original author or authors
* @license MIT, see LICENSE.txt for details
*
* @author Scott Andrews
*/
(function (define) {
'use strict';
define(function () {
return {
bus: { channels: 'child' },
plugins: [{ module: 'msgs/wire' }]
};
});
}(
typeof define === 'function' && define.amd ? define : function (factory) { module.exports = factory(require); }
// Boilerplate for AMD and Node
));