https://github.com/codewell/action-type-utils
https://github.com/codewell/action-type-utils
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewell/action-type-utils
- Owner: codewell
- License: mit
- Created: 2019-09-15T12:00:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:09:32.000Z (over 3 years ago)
- Last Synced: 2025-02-09T23:05:17.682Z (over 1 year ago)
- Language: JavaScript
- Size: 359 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @codewell/action-type-utils
## Installation
```
npm install @codewell/action-type-utils
```
## Basic usage
```JavaScript
import { getActionTypePrefix } from '@codewell/action-type-utils';
getActionTypePrefix('SET_STATE_PROPERTY');
// => 'SET'
```
```JavaScript
import { getStatePropertyFromActionType } from '@codewell/action-type-utils';
getStatePropertyFromActionType('SOME_STATE_PROPERTY');
// => 'stateProperty'
```