@imhonglu/type-object
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

@imhonglu/type-object

English | 한국어

Introduction

  • Provides a dependency-free type-safe wrapper for Object API
  • Provides types that closely match native behavior
  • Supported APIs
    • Object.keys
    • Object.entries
    • Object.fromEntries
    • Object.hasOwn

Table of Contents

Installation

npm install @imhonglu/type-object

Usage

For detailed examples, please refer to the API Reference.

import * as TypeObject from '@imhonglu/type-object';

const data = { a: 1, b: 2, c: 3 };

for (const key of TypeObject.keys(data)) {
  // key: "a" | "b" | "c"
  console.log(data[key]); // number
}
import * as TypeObject from '@imhonglu/type-object';

const string = 'hello';

for (const index of TypeObject.keys(string)) {
  // index: number & keyof string
  console.log(string[index]); // string
}
import * as TypeObject from '@imhonglu/type-object';

const data: unknown = { name: 'John' };

if (TypeObject.hasOwn(data, 'name')) {
  // data: unknown & { name: unknown }
  console.log(data.name);
}

API Reference

Package Sidebar

Install

npm i @imhonglu/type-object

Weekly Downloads

9

Version

1.0.1

License

MIT

Unpacked Size

31.9 kB

Total Files

29

Last publish

Collaborators

  • imhonglu