15.4.10 • Published 5 years ago

@the-/hash v15.4.10

Weekly downloads
922
License
MIT
Repository
github
Last release
5 years ago

@the-/hash

npm Version

Hash object to hold key-value pairs

Installation

$ npm install @the-/hash --save

Usage

'use strict'

const { TheHash } = require('@the-/hash')

async function tryExample() {
  const hash = new TheHash()
  hash.a = 1
  const a = hash.get('a')
  console.log(a)

  const p = hash.toProxy({ unknownCheck: true })
  console.log(p.x) // Emits unknown warning
}

tryExample().catch((err) => console.error(err))

API Guide

See API Guide for more detail

License

This software is released under the MIT License.

Links

15.4.10

5 years ago

15.4.3

5 years ago

15.4.2

5 years ago

15.2.0

5 years ago

15.1.4

5 years ago

15.1.3

5 years ago

15.1.2

5 years ago

15.1.0

5 years ago

15.0.3

5 years ago

15.0.2

5 years ago