Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 367 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 367 Bytes

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 ] } }