Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 426 Bytes

File metadata and controls

21 lines (16 loc) · 426 Bytes

@codewell/action-type-utils

Installation

npm install @codewell/action-type-utils

Basic usage

import { getActionTypePrefix } from '@codewell/action-type-utils';

getActionTypePrefix('SET_STATE_PROPERTY');
// => 'SET'
import { getStatePropertyFromActionType } from '@codewell/action-type-utils';

getStatePropertyFromActionType('SOME_STATE_PROPERTY');
// => 'stateProperty'