5.0.0 • Published 4 months ago
find-this-value v5.0.0
find-this-value
Find a value in a given object with programmable matching logic - node module
Usage
const ftv = require("find-this-value");
ftv({ a: "b" }, "b", (a, b) => a === b); // true
ftv({ a: "b" }, "a", (a, b) => a === b); // false
License: MIT
- Copyright (c) 2018 Git Faf
- Copyright (c) 2025 Anubhav Saini