remove-properties

๐Ÿ”ฅ Remove properties from object

GPL-3.0 License

Stars
5

๐Ÿ”ฅ Remove properties from object

easy-to-use, zero-dependency property remover.

Typedefinitions are built-in

๐Ÿฎ Installation

  • Using NPM: npm install remove-properties --save
  • Using Yarn: yarn add remove-properties

๐Ÿงถ Usage

const { removeProperties } = require("remove-properties");

const myObj = { a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7 };

removeProperties(myObj, ["a", "c", "f"]); // => { b: 2, d: 4, e: 5, g: 7 }

๐ŸŽˆ Options

Name Type Required Default
obj Object โœ”๏ธ -
remove Array{string} โœ”๏ธ -

๐Ÿงฆ Contributing

Feel free to use GitHub's features.

Badges
Extracted from project README
build supportServer totalDownloads weeklyDownloads version stars license
Related Projects