New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

extra-iterable

Package Overview
Dependencies
Maintainers
1
Versions
468
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-iterable - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

2

package.json
{
"name": "extra-iterable",
"version": "2.1.0",
"version": "2.1.1",
"description": "An iterable is a sequence of values.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -38,3 +38,3 @@ An [iterable] is a sequence of values.

|-----------------------|-------
| [is] | Checks if value is an iterable.
| [is] | Checks if value is iterable.
| [get] | Gets value at index.

@@ -46,59 +46,52 @@ | [set] | Sets value at index.

| [size] | Counts the number of values.
| [iterator] | Gives iterator for iterable.
| [from] | Converts an iterator to iterable.
| |
| [chunk] | Breaks iterable into chunks of given size.
| [compare] | Compares two iterables.
| [fill] | Fills with given value.
| [copy] | Copies part of iterable to another.
| [concat] | Appends iterables to the end.
| [copy] | Copies part of iterable to another.
| [count] | Counts values which satisfy a test.
| [slice] | Gets a part of iterable.
| [splice] | Removes or replaces existing values.
| [flat] | Flattens nested iterable to given depth.
| [cut] | Breaks iterable at given indices.
| [chunk] | Breaks iterable into chunks of given size.
| [cycle] | Gives values that cycle through an iterable.
| [difference] | Gives values of an iterable not present in another.
| [every] | Checks if all values satisfy a test.
| [fill] | Fills with given value.
| [repeat] | Repeats an iterable given times.
| [interleave] | Places values of an iterable between another.
| |
| [min] | Finds smallest value.
| [max] | Finds largest value.
| [range] | Finds smallest and largest values.
| [map] | Updates values based on map function.
| [reduce] | Reduces values to a single value.
| [filter] | Keeps values which pass a test.
| [find] | Finds leftmost value passing the test.
| [findIndex] | Finds index of leftmost value passing the test.
| [flat] | Flattens nested iterable to given depth.
| [forEach] | Calls a function for each value.
| [from] | Converts an iterator to iterable.
| [count] | Counts values which satisfy a test.
| [partition] | Segregates iterable keeping similar values together.
| [group] | Keeps similar values together and in order.
| [head] | Gets first value.
| [init] | Gets values except last.
| [interleave] | Places values of an iterable between another.
| [split] | Breaks iterable considering test as separator.
| [zip] | Combines values from n iterables.
| [join] | Joins values together.
| |
| [unique] | Removes duplicate values.
| [union] | Gives values present in any iterable.
| [intersection] | Gives values present in both iterables.
| [difference] | Gives values of an iterable not present in another.
| [isUnique] | Checks if there are no duplicate values.
| [isDisjoint] | Checks if iterables have no value in common.
| [isEqual] | Checks if two iterables are equal.
| |
| [isPrefix] | Checks if iterable starts with a prefix.
| [isInfix] | Checks if iterable contains an infix.
| [isIterator] | Checks if value is an iterator (can iterate only once).
| [is] | Checks if value is iterable.
| [isList] | Checks if value is a list (not string).
| [isPrefix] | Checks if iterable starts with a prefix.
| [isSuffix] | Checks if iterable ends with a suffix.
| [isSubsequence] | Checks if iterable has a subsequence.
| [isSuffix] | Checks if iterable ends with a suffix.
| [isUnique] | Checks if there are no duplicate values.
| [iterator] | Gives iterator for iterable.
| [join] | Joins values together.
| [last] | Gets last value.
| [length] | Counts the number of values.
| [map] | Updates values based on map function.
| [max] | Finds largest value.
| [min] | Finds smallest value.
| [partition] | Segregates iterable keeping similar values together.
| [pop] | Removes last value.
| [push] | Adds values to the end.
| [range] | Finds smallest and largest values.
| [reduce] | Reduces values to a single value.
| [repeat] | Repeats an iterable given times.
| |
| [isEqual] | Checks if two iterables are equal.
| [compare] | Compares two iterables.
| [search] | Searches a value from left.
| [shift] | Removes first value.
| [slice] | Gets a part of iterable.
| [find] | Finds leftmost value passing the test.
| [findIndex] | Finds index of leftmost value passing the test.
| [some] | Checks if any value satisfies a test.
| [splice] | Removes or replaces existing values.
| [split] | Breaks iterable considering test as separator.
| [tail] | Gets values except first.
| [union] | Gives values present in any iterable.
| [unique] | Removes duplicate values.
| [unshift] | Adds values to the start.
| [zip] | Combines values from n iterables.
| [every] | Checks if all values satisfy a test.
| [forEach] | Calls a function for each value.
<br>

@@ -105,0 +98,0 @@ [![nodef](https://merferry.glitch.me/card/extra-iterable.svg)](https://nodef.github.io)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc