ta-platform-utils
v1.0.0
Published
TA platform utils for node.js and the browser
Downloads
3
Maintainers
Keywords
Readme
ta-platform-utils
Platform utils for node.js and the browser.
Install
npm i ta-platform-utils
Usage
Here's the gist, take a look at the codebase for more. First import it:
import utils from 'ta-platform-utils'
Regex
See /regex
for more.
import { regex } from 'ta-platform-utils'
const password = 'kfK52k*s0h$42xC0'
const validPassword = regex.password.test(password)
//=> true
Enums
See /enums
for more.
import { enums } from 'ta-platform-utils'
const stateOptions = utils.enums.states.map(state => ({
text: state.name,
value: state.abbrev,
}))
//=> [{ text: 'California', value: 'CA' }, ...{}]
Contribute
- Clone this repo
- Create a branch
- Make changes to
/src
- Run a build
npm run build
, to make sure your changes check out. - Open a PR
Releasing
On the latest clean master
:
npm run release:major
npm run release:minor
npm run release:patch