mirror of
https://github.com/azure/login.git
synced 2026-06-06 15:17:05 +00:00
7 lines
207 B
JavaScript
7 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;
|