js-essentials-functions
v1.2.7
Published
<h1 align="center">JS Essentials Functions</h1>
Downloads
2,246
Maintainers
Readme
Package Informations
Code Climate
Deep Code
Install
if using npm:
$ npm install js-functions-essentials --save
if using yarn:
$ yarn add js-essentials-functions
Available Functions
| name | accept type | description |
| ------------- | ----------- | ------------------------------------------------ |
| cpfCnpjMask | string
| Returns the masked CPF or CNPJ |
| cpfCnpjUnmask | string
| Clears the CPF or CNPJ mask and returns a string |
| cepMask | string
| Return the masked CEP |
| cepUnmask | string
| Clear the CEP mask and return a string |
Usage with React
import React, { useState } from 'react'
import { cpfCnpjMask } from 'js-functions-essentials'
function App() {
const [cpf, setCpf] = useState('')
return (
<form>
<input
name="cpf"
type="text"
maxLength={11}
onChange={(e) => setCpf(e.target.value)}
value={cpfCnpjMask(cpf)}
/>
</form>
)
}
Usage with React Native
import React, { useState } from 'react';
impot { View, TextInput } from 'react-native';
import { cpfCnpjMask } from 'js-functions-essentials'
function App() {
const [cpf, setCpf] = useState('');
return (
<View style={{ flex: 1 }}>
<TextInput
onChangeText={(e) => setCpf(e)}
value={cpfCnpjMask(cpf)}
/>
</View>
);
}
Contribution
Contributions are what make the open source community an incredible place to learn, inspire and create. Any contribution you make will be much appreciated.
- Fork the project
- Create a Branch for your Feature (
git checkout -b feature/newFeature
) - Add your changes (
git add .
) - Commit your changes (
git commit -m 'Add new feature!
) - Push the Branch (
git push origin feature/newFeature
) - Open a Pull Request
Developers
| Julio Augusto | :----------------------------------------------------------------------------------------------------------------------------------------------------:
Licença
The Apache 2.0 (APACHE 2.0)