object-set-all-values-to
TypeScript icon, indicating that this package has built-in type declarations

6.0.15 • Public • Published

object-set-all-values-to

Recursively walk the input and set all found values in plain objects to something

page on codsen.com page on npm page on github Downloads per month changelog MIT Licence

Install

This package is pure ESM. If you're not ready yet, install an older version of this program, 4.1.0 (npm i object-set-all-values-to@4.1.0).

npm i object-set-all-values-to

Quick Take

import { strict as assert } from "assert";

import { setAllValuesTo } from "object-set-all-values-to";

assert.deepEqual(
  setAllValuesTo({
    a: "a",
    b: "b",
    c: "c",
    d: "d",
  }),
  {
    a: false,
    b: false,
    c: false,
    d: false,
  },
);

// you can change the default "false" to something else:
assert.deepEqual(
  setAllValuesTo(
    {
      a: "a",
      b: "b",
      c: "c",
      d: "d",
    },
    "x",
  ),
  {
    a: "x",
    b: "x",
    c: "x",
    d: "x",
  },
);

Documentation

Please visit codsen.com for a full description of the API.

Contributing

To report bugs or request features or assistance, raise an issue on GitHub.

Licence

MIT License.

Copyright © 2010-2024 Roy Revelt and other contributors.

ok codsen star

Package Sidebar

Install

npm i object-set-all-values-to

Weekly Downloads

8

Version

6.0.15

License

MIT

Unpacked Size

15.6 kB

Total Files

7

Last publish

Collaborators

  • royston