This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
define(function(){
// Internal function that returns an efficient (for current engines) version
// of the passed-in callback, to be repeatedly applied in other Underscore
// functions.
functionoptimizeCb(func,context,argCount){
if(context===void0)returnfunc;
switch(argCount==null?3:argCount){
case1:returnfunction(value){
returnfunc.call(context,value);
};
// The 2-argument case is omitted because we’re not using it.