named defines
Breaking changes from previous versions
- Promises are no longer polyfilled by this module. You will need to polyfill it yourself if you support Internet Explorer or other JS contexts where Promises are not present
- The module now uses named defines in the context of requirejs, so you'll need to specify its path to use it:
require.config({
paths: {
'netflux-client': '/path/to/module'
}
});