ship-gis/node_modules/underscore/amd/_byValue.js

12 lines
236 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
define(function () {
// Internal wrapper to enable match-by-value mode in `linearSearch`.
function byValue(value) {
if (!(this instanceof byValue)) return new byValue(value);
this.value = value;
}
return byValue;
});