Lines Matching refs:options

10304     function debounce(func, wait, options) {
10320 if (isObject(options)) {
10321 leading = !!options.leading;
10322 maxing = 'maxWait' in options;
10323 maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;
10324 trailing = 'trailing' in options ? !!options.trailing : trailing;
10897 function throttle(func, wait, options) {
10904 if (isObject(options)) {
10905 leading = 'leading' in options ? !!options.leading : leading;
10906 trailing = 'trailing' in options ? !!options.trailing : trailing;
14770 function template(string, options, guard) {
14776 if (guard && isIterateeCall(string, options, guard)) {
14777 options = undefined;
14780 options = assignInWith({}, options, settings, customDefaultsAssignIn);
14782 var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn),
14789 interpolate = options.interpolate || reNoMatch,
14794 (options.escape || reNoMatch).source + '|' +
14797 (options.evaluate || reNoMatch).source + '|$'
14805 (hasOwnProperty.call(options, 'sourceURL')
14806 ? (options.sourceURL + '').replace(/[\r\n]/g, ' ')
14841 var variable = hasOwnProperty.call(options, 'variable') && options.variable;
15074 function truncate(string, options) {
15078 if (isObject(options)) {
15079 var separator = 'separator' in options ? options.separator : separator;
15080 length = 'length' in options ? toInteger(options.length) : length;
15081 omission = 'omission' in options ? baseToString(options.omission) : omission;
15692 function mixin(object, source, options) {
15696 if (options == null &&
15698 options = source;
15703 var chain = !(isObject(options) && 'chain' in options) || !!options.chain,