KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
helpers
★ 9
Open GitHub ↗
Date and string formatters.
Download README (.md)
Explore Similar Repositories
WKWebView-Injection
:
Injecting css and js into WKWebView
netverify.github.io
:
No description available.
Rouigram
:
first instagram Api for user id without any registration.
Nerf
:
전국 응급실 정보 시스템 Nerf
ansible-role-hetzner-failover
:
Ansible role providing a HA setup using hetzner vSwitch and keepalived
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
helpers
?
Download (.md)
# Welcome to Platform Builders `Helpers` [![Build Status][check-badge]][workflows] [![codecov][codecov]](https://codecov.io/gh/platformbuilders/helpers) [![npm][npm-badge]][npm] [![MIT][license-badge]][license] [npm-badge]: https://img.shields.io/npm/v/@platformbuilders/helpers.svg [npm]: https://www.npmjs.com/package/@platformbuilders/helpers [license-badge]: https://img.shields.io/dub/l/vibe-d.svg [license]: https://raw.githubusercontent.com/platformbuilders/helpers/master/LICENSE.md [workflows]: https://github.com/platformbuilders/helpers/actions [check-badge]: https://github.com/platformbuilders/helpers/workflows/check/badge.svg [codecov]: https://codecov.io/gh/platformbuilders/helpers/branch/master/graph/badge.svg Welcome to the Platform Builder `helpers` package here you will find out all the helpers that we use on our projects # Whats the idea of this repository Its a place that we can share a little bit of our code base and show how we work on our projects with our helpers # How can i use the library? Just add the library to your project and import it! 1. Depend on it: ``` yarn add @platformbuilders/helpers 2. Import: ``` import { getTheme } from '@platformbuilders/helpers' import { isIOS } from '@platformbuilders/helpers/native' ``` # Helpers Documentation ## React/JS | Name | Returns | Arguments | | -------------------------------------------------- | ------- | ------------------------------ | | [`formatToBase64`](./docs/formatToBase64.md) | string | (value) | | [`currencyParser`](./docs/currencyParser.md) | string | (value, numberOfDecimalPlaces) | | [`parseToThousands`](./docs/parseToThousands.md) | string | (value) | | [`currencyToNumber`](./docs/currencyToNumber.md) | string | (value) | | [`removeWhiteSpaces`](./docs/removeWhiteSpaces.md) | string | (value) | | [`toOnlyNumbers`](./docs/toOnlyNumbers.md) | string | (value) | | [`formatToPhone`](./docs/formatToPhone.md) | string | (value) | ## React Native | Name | Returns | Arguments | | --------------------------------------------------- | ------- | ------------------ | | [`isIOS`](./docs/native/isIOS.md) | boolean | | ```