Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@type-ddd/phone
Advanced tools
Library that provides TypeScript type definitions for handling Phone Numbers in Domain-Driven Design contexts. It facilitates the validation and manipulation of Brazilian phone numbers.
@type-ddd/phone
The @type-ddd/phone library provides TypeScript type definitions for handling phone (Brazilian) in Domain-Driven Design contexts. It facilitates the validation and manipulation of phone numbers, ensuring they adhere to the Brazilian legal standards.
Install rich-domain
and @type-ddd/phone
with your favorite package manager
npm i rich-domain @type-ddd/phone
# OR
yarn add rich-domain @type-ddd/phone
Don't worry about removing special characters; they are automatically stripped from all instances.
import { Phone } from '@type-ddd/phone'
// Instance of phone or throws an error if provide an invalid value
const phone = Phone.init('11994882021');
// OR
// Result of phone (Check Result pattern docs)
const result = Phone.create('11994882021');
result.isOk(); // true
// phone instance or null if provide an invalid value
const phone = result.value();
Method to verify instance type.
// value as string
const isMobile = Phone.isMobile('11994882021');
// Output: true
// OR
// value as string
const isMobile = Phone.isHome('11994882021');
// Output: false
Don't worry about removing special characters; they are automatically stripped from all instances.
const result = Phone.isValid('(11) 99488-2021');
// Output: true
If you need the value with the mask, you can use the toPattern
method:
phone.toPattern();
// Output: '(11) 99488-2021'
Or if you need to apply mask from a string value you may use addMask
method
Phone.addMask('11994882021');
// Output: (11) 99488-2021
Or if you need to remove mask from a string value you may use removeSpecialChars
method
Phone.removeSpecialChars('(11) 99488-2021');
// Output: 11994882021
If you need to identify uf from a phone number
const phone = Phone.init('(11) 99488-2021');
phone.uf();
// Output: "São Paulo"
phone.code();
// 11
phone.number();
// 994882021
phone.toCall();
// 011994882021
FAQs
Library that provides TypeScript type definitions for handling Phone Numbers in Domain-Driven Design contexts. It facilitates the validation and manipulation of Brazilian phone numbers.
The npm package @type-ddd/phone receives a total of 150 weekly downloads. As such, @type-ddd/phone popularity was classified as not popular.
We found that @type-ddd/phone demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.