def-helper
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

def-helper

A collection of functions and methods to make it easier for you to create applications.

NPM JavaScript Style Guide

Install

npm install --save def-helper

Usage

import {
  slugify,
  validateEmail,
  validatePhone,
  getNumberInFirstString,
  validateURL,
  imageUrlToBase64
} from 'def-helper'

const slug = slugify('Hello World')
// result will be "hello-world"

const email = validateEmail('user@mail.com')
// result will be true

const phone = validatePhone('08123456789')
// result will be true

const number = getNumberInFirstString('17676-Hello 123 World')
// result will be 17676

const url = validateURL('https://google.com')
// result will be true

// imageUrlToBase64([url image -> convert to base64],[url image if url image target is error], (result base64) => {
//
// })
const base64 = imageUrlToBase64(
  'https://google.com/logo.png',
  'https://img.kpopmap.com/2018/07/mbc-rebel.jpg',
  (base64) => {
    // result will be base64 string
  }
)

License

MIT © defuj

Contributor

thanks to all amazing contributors

Package Sidebar

Install

npm i def-helper

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

15.2 kB

Total Files

8

Last publish

Collaborators

  • defuj