npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mingutils

v0.8.0

Published

MINi Good Utils

Downloads

10

Readme

mingutils

MINi Good UTILS

Install & Usage

Install

yarn add mingutils

Usage

ES6

import {getHostName, ...} from 'mingutils'

NodeJS

const {getHostName, ...} = require('mingutils')

getQueryParams

// ex) http://www.11st.co.kr/product/SellerProductDetail.tmall?method=getSellerProductDetail&prdNo=2228972569&trTypeCd=22&trCtgrNo=895019

getQueryParams(window.location.href)
/*
{
    method: "getSellerProductDetail",
    prdNo: "2228972569",
    trTypeCd: "22",
    trCtgrNo: "895019"
}
*/

queryObjToStr

queryObjToStr({ a: 1, b: 2 }) // 'a=1&b=2'

setQueryParams

setQueryParams({ id: 123, value: 'blabla' }) // window.location.href will be 'https://blabla.com?id=123&value=blabla'

getHostName

getHostName('https://news.v.daum.net/v/20200610002355321') // 'news.v.daum.net'

numberWithCommas

numberWithCommas(123456) // 123,456

enableUrl

const str = 'hello google http://google.com'
enableUrl(str) // hello google <a href="http://google.com">http://google.com</a>
enableUrl(str, '_blank') // hello google <a href="http://google.com" target="_blank">http://google.com</a>

onlyNumber

<input onkeydown="onlyNumber(event)" />

removeTag

const html = '<pre class="editor">some text</pre>'
removeTag(html) // 'some text'

highlight

highlight('hello')('hello world') // '<mark>hello</mark> world'

OR

const isPositive = num => num > 0
const isZero = num => num === 0
const isZeroOrPositive = OR(isPositive, isZero)
isZeroOrPositive(1) // true
isZeroOrPositive(0) // true
isZeroOrPositive(-1) // false

AND

const isPositive = num => num > 0
const isEven = num => num % 2 === 0
const isEvenAndPositive = AND(isPositive, isEven)
isEvenAndPositive(2) // true
isEvenAndPositive(0) // false
isEvenAndPositive(-2) // false

exclude

const arr = [1, 2, 3, 4, 5, 6]
const isEven = num => num % 2 === 0
exclude(isEven)(arr) // [1,3,5]

isNotNil

complement of R.isNil

isNotNil(undefined) // false
isNotNil(null) // false
isNotNil(0) // true
isNotNil('') // true
isNotNil(NaN) // true

go

const add5 = num => num + 5
const mul2 = num => num * 2
go(1, add5, mul2) // 12

nl2br

const str = 'hello\nworld'
nl2br(str) // 'hello<br />world'

timer

await timer(2000) // wait for 2s

delay

await delay(fn, 2000) // call fn after 2s

removeExt

const filename = 'index.html'
removeExt(filename) // 'index'

getFileName

const filename = '/users/test/index.html'
getFileName(filename) // 'index'
getFileName(filename, true) // 'index.html'

loadJs

(Browser only)

await loadJs('https://code.jquery.com/jquery-3.4.1.min.js') // browser only
console.log(jQuery().jquery) // "3.4.1"

sortKeys

import { descend, identity } from 'ramda'

const obj = { b: 1, a: 1, c: 1 }
const sorted = sortKeys(obj) // {a: 1, b: 1, c: 1}
const reversed = sortKeys(obj, (a, b) => (a < b ? 1 : -1)) // {c: 1, b: 1, a: 1}

onlyOneInvkoe

let cnt = 0
const fn = () => {
  cnt = cnt + 1
}
const fn2 = onlyOneInvoke(fn)
fn2() // `cnt` will be 1
fn2() // skipped

createRandomString

possible character: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'

createRandomString(10) // return random string with 10 length

escapeRegExp

const str = 'hello [world]'
escapeRegExp(str) // hello \[world\]

hasProps

const obj = { a: 1, b: 2, c: 3 }
hasProps(['a', 'b', 'c'])(obj) // true
hasProps(['a', 'b'])(obj) // true
hasProps(['c'])(obj) // true
hasProps(['a', 'b', 'd'])(obj) // false
hasProps(['d'])(obj) // false

oneOf

import { oneOf } from '@madup-inc/utils'

oneOf([[true, 2]]) // 2
oneOf([
  [false, 1],
  [false, 2],
  [true, 3],
]) // 3
oneOf([
  [false, 1],
  [true, 2],
]) // 2
oneOf([[false, 1]]) // undefined
oneOf([[false, 1]], 'zzz') // 'zzz'

// Lazy evaluation
oneOf([() => true, 1]) // 1
oneOf([true, () => 2]) // 2
oneOf([() => true, () => 3]) // 3
oneOf([false, 1], () => 4) // 4

camelToKabab

camelToKabab('helloWorld') // 'hello-world'
camelToKabab('camel2Kabab') // 'camel2-kabab'
camelToKabab('koreaArmyTrainingCenterK2') // 'korea-army-training-center-k2'
camelToKabab('hello-world') // 'hello-world'
camelToKabab('hello_world') // 'hello_world'
camelToKabab('hello-World') // 'hello-World'

classNames

classNames({ a: true, b: false }) // 'a'
classNames({ a: true, b: false }, { c: true, d: true }) // 'a c d'
classNames('aa', 'bb') // 'aa bb'
classNames('aa bb', 'cc') // 'aa bb cc'
classNames('aa bb', 'cc', 'dd ee') // 'aa bb cc dd ee'
classNames('aa', undefined, 'cc') // 'aa cc'
classNames('aa', null, 'cc') // 'aa cc'

classNames('cc', { a: true, b: false }) // 'cc a'
classNames('xx', { a: true, b: false }, 'vv') // 'xx a vv'
classNames({ a: false, b: false })) // undefined

clsNms

clsNms({ a: true, b: false }) // 'a'
clsNms({ a: true, b: false }, { c: true, d: true }) // 'a c d'
clsNms('aa', 'bb') // 'aa bb'
clsNms('aa', undefined, 'cc') // 'aa cc'
clsNms('aa', null, 'cc') // 'aa cc'

clsNms('cc', { a: true, b: false }) // 'cc a'
clsNms('xx', { a: true, b: false }, 'vv') // 'xx a vv'
clsNms({ a: false, b: false }) // undefined
clsNms('visible', { hasContent: true }) // 'visible has-content'
clsNms('hasContent', { visible: true }) // 'has-content visible'