@abdigureye/lotide 中文文档教程

发布于 3年前 浏览 26 项目主页 更新于 3年前

Lotide

Lodash 库的迷你克隆。

Purpose

注意:此库是出于学习目的而发布的。 它旨在用于生产级软件。

这个项目是我创建和发布的,是我在 Lighthouse Labs 学习的一部分。

Usage

安装它:

npm install @abdigureye/lotide

需要它:

const _ = require('@abdigureye/lotide');< /code>

调用它:

const results = _.tail([1, 2, 3]) // => [2, 3]

Documentation

目前实现了以下功能:

  • eqArrays: Accepts two arrays and returns true or false based on if they are equal Takes in two arrays returns true or false if equal/not equal
  • tail: Takes in array and returns the same array minus the first value
  • assertArraysEqual: Returns true or false dependant on arrays passed through are equal/not equal
  • middle: Takes in array and returns array with middle value
  • countLetters: Takes in a string and returns object with key-value pairs indicating letters and # of times appeared in said string
  • head' : Takes in array to output first value
  • takeUntil: Takes in array and a callback and returns the array elements up untill the callback is satisfied
  • letterPositions: Takes in string and returns object of letters and its index
  • map: Takes in an array and callback function and creates new resulting array using callbacks
  • findKeyByValue: akes an object and finds value needed by going through object and returning matching value
  • eqObjects: Takes in two objects and returns true or false if said objects are equal/not equal
  • without: Takes a source and removes desired item
  • findKey: Takes in object and callback and goes through object to return desired key and truthy value
  • countOnly: Takes in an array and returns an object of the most reoccuring element
  • assertEqual: Takes in actual and expected to match
  • assertObjectsEqual: Takes in two objects for assertation purposes

Lotide

A mini clone of the Lodash library.

Purpose

BEWARE: This library was published for learning purposes. It is not intended for use in production-grade software.

This project was created and published by me as part of my learnings at Lighthouse Labs.

Usage

Install it:

npm install @abdigureye/lotide

Require it:

const _ = require('@abdigureye/lotide');

Call it:

const results = _.tail([1, 2, 3]) // => [2, 3]

Documentation

The following functions are currently implemented:

  • eqArrays: Accepts two arrays and returns true or false based on if they are equal Takes in two arrays returns true or false if equal/not equal
  • tail: Takes in array and returns the same array minus the first value
  • assertArraysEqual: Returns true or false dependant on arrays passed through are equal/not equal
  • middle: Takes in array and returns array with middle value
  • countLetters: Takes in a string and returns object with key-value pairs indicating letters and # of times appeared in said string
  • head' : Takes in array to output first value
  • takeUntil: Takes in array and a callback and returns the array elements up untill the callback is satisfied
  • letterPositions: Takes in string and returns object of letters and its index
  • map: Takes in an array and callback function and creates new resulting array using callbacks
  • findKeyByValue: akes an object and finds value needed by going through object and returning matching value
  • eqObjects: Takes in two objects and returns true or false if said objects are equal/not equal
  • without: Takes a source and removes desired item
  • findKey: Takes in object and callback and goes through object to return desired key and truthy value
  • countOnly: Takes in an array and returns an object of the most reoccuring element
  • assertEqual: Takes in actual and expected to match
  • assertObjectsEqual: Takes in two objects for assertation purposes
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文