1.0.2 • Published 2 years ago

dnull v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

dnull

Installation

npm install dnull

Usage

import { dnull } from "dnull";

const obj = {
  name: "john",
  address: {
    street: "john's street",
    number: null,
    tags: [1, 2, null, 4],
  },
};

typeof dnull(obj); // { name: "john", address: { street: "john's street", number: undefined, tags: [ 1, 2, undefined, 4 ] } }
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago