JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q55138F
  • License MIT

A powerful JavaScript utility library for built-in object extensions. 一个多功能的 JavaScript 内置对象原型链扩展方法工具库。

Package Exports

  • @skit/extensions
  • @skit/extensions/dist/index.min.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@skit/extensions) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@skit/extensions

NPM Version NPM Download Build Status License

A powerful JavaScript utility library for built-in object extensions.

中文文档


Features

  • Deliveries several common extended methods to some built-in objects (All APIs are designed to be named starting with $ and are not enumerable, so you don't need to worry about forward compatibility with the ECMAScript standard).

  • Independent modularity.

  • Supports TypeScript.


Usage

Install:

npm install @skit/extensions

Import:

/* use `require` */
require('@skit/extensions');

/* use `import` */
import '@skit/extensions';

API:

Please refer to the declaration file in /types/*.d.ts.

  • Array:

    • Array.$shuffle
    • Array.prototype.$distinct
    • Array.prototype.$distinctBy
    • Array.prototype.$fill
    • Array.prototype.$findLast
    • Array.prototype.$findLastIndex
    • Array.prototype.$groupBy
    • Array.prototype.$insertAt
    • Array.prototype.$max
    • Array.prototype.$maxBy
    • Array.prototype.$min
    • Array.prototype.$minBy
    • Array.prototype.$removeAt
    • Array.prototype.$shuffle
    • Array.prototype.$sortAsc
    • Array.prototype.$sortAscBy
    • Array.prototype.$sortDesc
    • Array.prototype.$sortDescBy
  • Boolean:

    • Boolean.$from
  • Date:

    • Date.$now
    • Date.$today
    • Date.$unix
    • Date.prototype.$addMilliseconds
    • Date.prototype.$addSeconds
    • Date.prototype.$addMinutes
    • Date.prototype.$addHours
    • Date.prototype.$addDays
    • Date.prototype.$addMonths
    • Date.prototype.$addYears
    • Date.prototype.$format
    • Date.prototype.$isToday
    • Date.prototype.$isWeekend
    • Date.prototype.$midnight
    • Date.prototype.$unix
  • Function:

    • Function.$debounce
    • Function.$throttle
  • Number:

    • Number.$isNumeric
    • Number.$isOdd
    • Number.$isEven
    • Number.prototype.$toFloor
    • Number.prototype.$toCeil
    • Number.prototype.$toRound
  • Object:

    • Object.$merge
  • Promise:

    • Promise.$delay
    • Promise.$sequential
    • Promise.$try
  • String:

    • String.$equals
    • String.prototype.$reverse
    • String.prototype.$toCamelCase
    • String.prototype.$toKebabCase
    • String.prototype.$toPascalCase
    • String.prototype.$toSnakeCase

Changelog

Please view the CHANGELOG for details.