Getting Started

Install

npm install --save astx-redux-util

Access

All functions are exposed through UMD, and therefore accessable through any one of the following techniques ...

  • ES6 Import (Native JS)

    import { reducerHash, joinReducers }  from 'astx-redux-util';
    -OR-
    import * as AstxReduxUtil from 'astx-redux-util';
    -OR-
    import AstxReduxUtil from 'astx-redux-util';
    
    reducerHash(...)
    joinReducers(...)
    -OR-
    AstxReduxUtil.reducerHash(...)
    AstxReduxUtil.joinReducers(...)
    
  • CommonJS

    const { reducerHash, joinReducers } = require('astx-redux-util');
    -OR-
    const AstxReduxUtil = require('astx-redux-util');
    
    reducerHash(...)
    joinReducers(...)
    -OR-
    AstxReduxUtil.reducerHash(...)
    AstxReduxUtil.joinReducers(...)
    
  • AMD

    define(['astx-redux-util', 'otherModule'], function(AstxReduxUtil, otherModule) {
      AstxReduxUtil.reducerHash(...)
      AstxReduxUtil.joinReducers(...)
    });
    
  • <script> tag

    <script src="https://unpkg.com/astx-redux-util/dist/astx-redux-util.min.js"></script>
    
    <script>
      AstxReduxUtil.reducerHash(...)
      AstxReduxUtil.joinReducers(...)
    </script>
    

results matching ""

    No results matching ""