@abdigureye/lotide 中文文档教程
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 equaltail
: Takes in array and returns the same array minus the first valueassertArraysEqual
: Returns true or false dependant on arrays passed through are equal/not equalmiddle
: Takes in array and returns array with middle valuecountLetters
: Takes in a string and returns object with key-value pairs indicating letters and # of times appeared in said stringhead
' : Takes in array to output first valuetakeUntil
: Takes in array and a callback and returns the array elements up untill the callback is satisfiedletterPositions
: Takes in string and returns object of letters and its indexmap
: Takes in an array and callback function and creates new resulting array using callbacksfindKeyByValue
: akes an object and finds value needed by going through object and returning matching valueeqObjects
: Takes in two objects and returns true or false if said objects are equal/not equalwithout
: Takes a source and removes desired itemfindKey
: Takes in object and callback and goes through object to return desired key and truthy valuecountOnly
: Takes in an array and returns an object of the most reoccuring elementassertEqual
: Takes in actual and expected to matchassertObjectsEqual
: 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 equaltail
: Takes in array and returns the same array minus the first valueassertArraysEqual
: Returns true or false dependant on arrays passed through are equal/not equalmiddle
: Takes in array and returns array with middle valuecountLetters
: Takes in a string and returns object with key-value pairs indicating letters and # of times appeared in said stringhead
' : Takes in array to output first valuetakeUntil
: Takes in array and a callback and returns the array elements up untill the callback is satisfiedletterPositions
: Takes in string and returns object of letters and its indexmap
: Takes in an array and callback function and creates new resulting array using callbacksfindKeyByValue
: akes an object and finds value needed by going through object and returning matching valueeqObjects
: Takes in two objects and returns true or false if said objects are equal/not equalwithout
: Takes a source and removes desired itemfindKey
: Takes in object and callback and goes through object to return desired key and truthy valuecountOnly
: Takes in an array and returns an object of the most reoccuring elementassertEqual
: Takes in actual and expected to matchassertObjectsEqual
: Takes in two objects for assertation purposes
更多
你可能也喜欢
- 2p-repl 中文文档教程
- 3pm-timesheet-module 中文文档教程
- 7s-eslint-config-lwc 中文文档教程
- @1hive/celeste 中文文档教程
- @24hr/rawb-content-cache 中文文档教程
- @33cn/wallet-js-bridge 中文文档教程
- @4geit/rct-side-menu-component 中文文档教程
- @4success/successfactors-cli-tools 中文文档教程
- @6edesign/express-restify-mongoose 中文文档教程
- @9fv.io/is-port-reachable 中文文档教程