New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

js-utils-pro

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-utils-pro

Add some useful utils to your project. No more 'ctrl C V'.

latest
Source
npmnpm
Version
0.0.26
Version published
Maintainers
1
Created
Source

js-utils

Add some useful utils to your project. No more 'ctrl C V'

Task completion

  • isFns

    is, isDef, isUnDef, isObject, isDate, isNull, isNumber, isString, isFunction, isPromise, isBoolean, isRegExp, isArray, isEmpty, isServer, isClient, isWindow, isElement, isImageDom, isTextarea, isMobile, isiOS, isAndroid, isWechat, isLine, isIOSWechat, isFacebook, isWhatsapp, isTwitter, isMac, isWin.

    See use code at js-utils/isFunctions.test.ts at main · laoer536/js-utils (github.com) && js-utils/isFunctions.client.test.ts at main · laoer536/js-utils (github.com)

  • dataFns

    deepCloneByStringfy,deepClone,jsonToObject,getRandomNumber,getRandomOneInArr,getRandomArr,getMapkeyedObj,getLengthArr.

    See use code at js-utils/data.test.ts at main · laoer536/js-utils (github.com)

  • stringFns

    snakeCase,camelCase,kebabCase,pascalCase,splitByCase,lowerFirst,upperFirst.

    See use code at js-utils/string.test.ts at main · laoer536/js-utils (github.com)

  • domFns(It should use in client)

    getUrlSearchParams,intersectionObserverElement,downloadFile,playAudio,fastCopy.

    See use code at js-utils/dom.test.ts at main · laoer536/js-utils (github.com)

  • Other(Waiting for exploration)

How to use

  • npm

    npm install js-utils-pro -D
    
  • pnpm

    pnpm install js-utils-pro -D
    
  • yarn

    yarn add js-utils-pro -D
    

In code, you can

//way1
import {isFns} from 'js-utils-pro'
import {dataFns} from 'js-utils-pro'
isFns.isEmpty([]) //true
isFns.isNumber(222222) // true
const target = { name: 'laoer536', obj: { age: 1111, sex: 1 } }
const deepTarget = dataFns.deepClone(target)
//...
//Those methods are covered by test. They are safe and available.

//way2:
//when version >= 0.0.13 You also can
import {isEmpty,isNumber} from 'js-utils-pro/is'
import {deepClone} from 'js-utils-pro/data'
isEmpty([]) //true
isNumber(222222) // true
const target = { name: 'laoer536', obj: { age: 1111, sex: 1 } }
const deepTarget = deepClone(target)
//...
//Which way do we use? It's up to you. The 'way1' is categorized for easy memory and use. But I prefer to use 'way2', because it use 'import on demand' to get minimize size.

Off Topic

If you discover some bugs when you use, please send some issues or 'pr', thanks a lot. I will continue to maintain this library.

laoer536/js-utils: Add some useful utils to your project. No more 'ctrl C V' (github.com)

Keywords

js-utils

FAQs

Package last updated on 18 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts