Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

js-utils-z

Aaron-Zhao139MIT1.2.1

js-utils-z provides JavaScript utility functions including commonly used data structures similar to Java util library.

js utils, heap, heap data structure, queue, queue data structure, linked hash map

readme

Introduction

build:? npm npm npm

js-utils-z provides JavaScript utility functions including commonly used data structures similar to Java util library. It can be used in the browser or back-end environment like Node.js. It should support all modern web broswers except IE.

Test

Run npm install, after the install run npm test to run the test cases.

Install

npm install --save js-utils-z

Import

const { Heap } = require('js-utils-z');

or

import { Heap } from 'js-utils-z';

License

MIT

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[1.2.1] - 2021-05-30

Added

  • Update index.js

[1.2.0] - 2021-05-30

Added

  • Added linked hash map structure

[1.1.0] - 2021-05-27

Added

  • Added queue data structure

[1.0.1] - 2021-05-27

Changed

  • Heap to return null instead of undefined when the heap is empty

[1.0.0] - 2021-05-22

Added

  • initial version