1.0.3 • Published 6 years ago

strict-dict v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

strict-dict

Object (dictionary) that throws TypeError when trying to get an undefined property.

Installation

npm install strict-dict -S

Usage

const obj = strictDict({
  a: 1,
  b: 2
})

obj.a // -> 1
obj.b // -> 2
obj.c // -> throws TypeError, since c is undefined

Credits

  • Icon by Thomas Helbig from the Noun Project

caiogondim.com  ·  GitHub @caiogondim  ·  Twitter @caio_gondim

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago