1.0.2 • Published 10 months ago

helper-function v1.0.2

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
10 months ago

helper-function

Examples

queryBuilder

import { queryBuilder } from "helper-function"

const params = {
	id:null,
  	name:'anmol',
  	dob:undefined,
  	phone:0,
}

console.log(queryBuilder("https://anmol-fzr.web.app/",params))


// result "https://anmol-fzr.web.app?name=anmol"

removeFalsyValues

import { removeFalsyValues } from "helper-function"

const params = {
	id:null,
  	name:'anmol',
  	dob:undefined,
  	phone:0,
}

console.log(removeFalsyValues(params))

// result
// { "name":'anmol' }

Author

Anmol

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago