0.2.0 • Published 2 years ago

@lei-xx/web-utils v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

web-utils

Description

An easy-to-use function tool library for front-end development.

Software Architecture

Extend common functions on the web side based on third-party tool libraries, and use tsc to build products.

Installation

# npm
npm i lodash-es @lei-xx/web-utils
# yarn | pnpm
pnpm add lodash-es @lei-xx/web-utils

Instructions

import { camelCase } from 'lodash-es'
import { bigCamelCase } from '@lei-xx/web-utils'

const str = 'plain-text'

console.log(camelCase(str)) // plainText
console.log(bigCamelCase(str)) // PlainText

Contribution

  1. Fork the repository
  2. Create Feat_xxx branch
  3. Commit your code
  4. Create Pull Request