Files
feedstr.live/node_modules/underscore/cjs/_byValue.js
T
2023-11-25 18:12:47 -05:00

8 lines
207 B
JavaScript

// Internal wrapper to enable match-by-value mode in `linearSearch`.
function byValue(value) {
if (!(this instanceof byValue)) return new byValue(value);
this.value = value;
}
module.exports = byValue;