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

utils-lite

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utils-lite

utils for smaller and convenient

latest
Source
npmnpm
Version
0.1.15
Version published
Maintainers
1
Created
Source

download version npm bundle size (minified) language License

Install

npm i utils-lite -S

Start JS

use npm

import { debounce } from 'utils-lite'
// commonjs package is 'utils-lite/lib/index.cjs.js'
debounce(() => {
  // code...
}, 1000)

use cdn

<script src="https://unpkg.com/utils-lite/lib/index.umd.min.js"></script>
<script>
UtilsLite.debounce(function () {
  // code ...
}, 1000)
</script>

Start CSS

Now css utils package has three file type: less, sass, stylus as index.less/ index.sass/index.styl, you can choose one and import to you project, for example

@import 'project-path/node_modules/utils-lite/index.less';
.test {
  .text-ellipsis
}
@import 'project-path/node_modules/utils-lite/index.sass';
.test {
  @include text-ellipsis;
}
@import 'project-path/node_modules/utils-lite/index.styl';
.test
  text-ellipsis();

JS Utils List

debounce

debounce(<fn>, <delay>)

throttle

throttle(<fn>, <wait>, [delay])

get

get(<target>, <path>, [default])

path format: 'a.b.c'

set

set(<target>, <path>, <value>)

clone

clone(<target>)

cloneDeep

cloneDeep(<target>)

getType

getType(<target>)

getTypeof

getTypeof(<target>)

isObject

isObject(<target>)

isArray

isArray(<target>)

isFunction

isFunction(<target>)

isString

isString(<target>)

isBoolean

isBoolean(<target>)

isEmptyObj

isEmptyObj(<target>)

isNumber

isNumber(<target>)

getStore

getStore(<key>)

setStore

setStore(<key>, <value>)

kebabToCamel

kebabToCamel(<key>)

camelToKebab

camelToKebab(<key>)

unique

unique(<array>)

getLinearValue

getLinearValue(<x1>, <y1>, <x2>, <y2>, [x3])

getFnAndObjValue

getFnAndObjValue(<function|object>, <key>)

arrDelItem

arrDelItem(<array>, <diffItem>)

arrDelArrItem

arrDelArrItem(<array>, <diffArrayItem>)

toArray

toArray(<arrayLike>)

getArrayMin

getArrayMin(<array>)

extend

extend(<sourceObj>, [otherObj])

hasOwn

hasOwn(<target>)

isEqual

isEqual(<alice>, <bob>)

chunk

chunk(<array>, <number>)

CSS Utils List

text-ellipsis

.target {
  .text-ellipsis
}

text-loading

.target {
  .text-loading([time])
}

License

MIT

FAQs

Package last updated on 07 Jul 2018

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