Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A Javascript utility to clean objects recursively, deleting undefined & null or falsy properties.

License

NotificationsYou must be signed in to change notification settings

rohmanhm/ox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Javascript utility to clean objects recursively, deleting undefined & null or falsy properties.

Install

$ npm install @rohmanhm/ox

Or

$ yarn add @rohmanhm/ox

Usage

importoxfrom'@rohmanhm/ox';// Orconstox=require('@rohmanhm/ox').default;constobject={className:'only-this-obj-key-will-persist',disabled:'',autoComplete:false,checked:undefined,spellCheck:null,};constnewObject=ox(object);//=> {className: 'only-this-obj-key-will-persist'}

API

ox(source, strict)

source

Type:object

Source object to clean properties from.

strict

Type:booleanDefault:trueStrict will clean all falsy key

Local Development

Below is a list of commands you will probably find useful.

npm start oryarn start

Runs the project in development/watch mode. Your project will be rebuilt upon changes. TSDX has a special logger for you convenience. Error messages are pretty printed and formatted for compatibility VS Code's Problems tab.

Your library will be rebuilt if you make edits.

npm run build oryarn build

Bundles the package to thedist folder.The package is optimized and bundled with Rollup into multiple formats (CommonJS, UMD, and ES Module).

npm test oryarn test

Runs the test watcher (Jest) in an interactive mode.By default, runs tests related to files changed since the last commit.

Related

  • clean-obj - Clean objects recursively, deleting undefined & null or falsy properties.

About

A Javascript utility to clean objects recursively, deleting undefined & null or falsy properties.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp