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

log1997-utils

v0.0.5

Published

log1997's utils package

Downloads

7

Readme

log-utils

a collection of common utils by log1997

it's can be used with vue,react or other js framework.

Install

npm install log1997-utils

Usage

there are some utils in this package.you can use them by import them. for example:

// this function can be used to get tree data from list data
import { arrayToTree } from 'log1997-utils'
const arrData=[
    {id:1,name:'a',pid:0},
    {id:2,name:'b',pid:1},
    {id:3,name:'c',pid:1},
    {id:4,name:'d',pid:2},
    {id:5,name:'e',pid:2},
    {id:6,name:'f',pid:3},
    {id:7,name:'g',pid:3},
    {id:8,name:'h',pid:4},
]
cosnt treeData=arrayToTree(arrData);
console.log(treeData);

API

ArrayFuc

arrayToTree

there are some params in this function: your arrData's item have to have idKey and pidKey.

  • arrData:a array and it's necessary.
  • idKey:the key of id in arrData,it's default value is 'id',not necessary.
  • pidKey:the key of pid in arrData,it's default value is 'pid'.not necessary.
  • childrenKey:the key of children in arrData,it's default value is 'children'.not necessary.

there are a return data:

  • treeData:it's a tree data.

treeToArray

there are some params in this function:

  • treeData:a tree data and it's necessary.
  • childrenKey:the key of children in treeData,it's default value is 'children'.not necessary.

there are a return data:

  • arrData:it's a array data.

ColorFunc

getRandomGradientColor

this function can be used to get a random gradient color string. there are some params in this function:

  • hexColor:the number of hexcolor in gradient color string. like:#ffffff.not necessary.
  • deg:the deg of gradient color,it's tyep is number. like:90.not necessary.
  • Colorangle:the angle of gradient color,it's type is number. like:90.not necessary. there are a return data:
  • color:it's a gradient color string.like:linear-gradient(90deg, #ffffff, #ffffff).

and ther are other functions in this package.

table of contents:

| Function | Description | | --- | --- | |rgb2Hsv|rgb to hsv| |rgb2Hsl|rgb to hsl| |rgb2Hex|rgb to hex| |hex2Rgb|hex to rgb| |hsv2Rgb|hsv to rgb| |rotateHsv|rotate hsv default angle is 30°| |randomColor|get a random color|

MathFunc

byteToUnit

this function can be used to convert byte to unit. for example,if you want to convert 1024 byte to kb, you can use this function like this:

import { byteToUnit } from 'log1997-utils'
const kb=byteToUnit(1025,'kb'); //100.10KB

params:

  • byte:the number of byte.necessary.
  • unit:the unit of byte.default value is ''not necessary.
  • fixed:the number of fixed.default value is 2.not necessary.

return:

  • unitByte:the string of unit data.