From be62e4e95b9def78eeed34bc37f77bec1b165ed9 Mon Sep 17 00:00:00 2001 From: Subhajit Sahu Date: Fri, 14 Apr 2023 20:29:02 +0530 Subject: [PATCH] :bug: feat: use key, value arrays --- package-lock.json | 4 ++-- package.json | 2 +- src/index.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e674412..db158b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "extra-lists", - "version": "4.0.2", + "version": "4.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "extra-lists", - "version": "4.0.2", + "version": "4.0.3", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^24.1.0", diff --git a/package.json b/package.json index 2b1d1ed..d1a41b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "extra-lists", - "version": "4.0.2", + "version": "4.0.3", "description": "A collection of functions for operating upon Lists.", "main": "index.js", "module": "index.mjs", diff --git a/src/index.ts b/src/index.ts index 01f6420..0921f10 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,9 +14,9 @@ import * as xmap from "extra-map"; // TYPES // ===== -/** Entries is a list of key-value pairs, with unique keys. */ +/** Entries is an array of key-value pairs, with unique keys. */ export type Entries = Iterable<[K, V]>; -/** Lists is a pair of key list and value list, with unique keys. */ +/** Lists is a pair of key array and value array, with unique keys. */ export type Lists = [Iterable, Iterable];