Lines Matching refs:options

127 * <a href="#_debouncefunc-wait0-options">`_.debounce`</a>
140 * <a href="#_throttlefunc-wait0-options">`_.throttle`</a>
333 * <a href="#_templatestring-options">`_.template`</a>
339 * <a href="#_truncatestring-options">`_.truncate`</a>
364 * <a href="#_mixinobjectlodash-source-options">`_.mixin`</a>
3819 <h3 id="_debouncefunc-wait0-options"><code>_.debounce(func, [wait=0], [options={}])</code></h3>
3826 Provide `options` to indicate whether `func` should be invoked on the
3833 **Note:** If `leading` and `trailing` options are `true`, `func` is
3851 3. `[options={}]` *(Object)*: The options object.
3852 4. `[options.leading=false]` *(boolean)*: Specify invoking on the leading edge of the timeout.
3853 5. `[options.maxWait]` *(number)*: The maximum time `func` is allowed to be delayed before it's inv…
3854 6. `[options.trailing=true]` *(boolean)*: Specify invoking on the trailing edge of the timeout.
4336 <h3 id="_throttlefunc-wait0-options"><code>_.throttle(func, [wait=0], [options={}])</code></h3>
4342 immediately invoke them. Provide `options` to indicate whether `func`
4349 **Note:** If `leading` and `trailing` options are `true`, `func` is
4367 3. `[options={}]` *(Object)*: The options object.
4368 4. `[options.leading=true]` *(boolean)*: Specify invoking on the leading edge of the timeout.
4369 5. `[options.trailing=true]` *(boolean)*: Specify invoking on the trailing edge of the timeout.
9638 <h3 id="_templatestring-options"><code>_.template([string=''], [options={}])</code></h3>
9665 2. `[options={}]` *(Object)*: The options object.
9666 3. `[options.escape=_.templateSettings.escape]` *(RegExp)*: The HTML "escape" delimiter.
9667 4. `[options.evaluate=_.templateSettings.evaluate]` *(RegExp)*: The "evaluate" delimiter.
9668 5. `[options.imports=_.templateSettings.imports]` *(Object)*: An object to import into the template…
9669 6. `[options.interpolate=_.templateSettings.interpolate]` *(RegExp)*: The "interpolate" delimiter.
9670 7. `[options.sourceURL='lodash.templateSources[n]']` *(string)*: The sourceURL of the compiled temp…
9671 8. `[options.variable='obj']` *(string)*: The data object variable name.
9903 <h3 id="_truncatestring-options"><code>_.truncate([string=''], [options={}])</code></h3>
9915 2. `[options={}]` *(Object)*: The options object.
9916 3. `[options.length=30]` *(number)*: The maximum string length.
9917 4. `[options.omission='...']` *(string)*: The string to indicate text is omitted.
9918 5. `[options.separator]` *(RegExp|string)*: The separator pattern to truncate to.
10575 <h3 id="_mixinobjectlodash-source-options"><code>_.mixin([object=lodash], source, [options={}])</co…
10592 3. `[options={}]` *(Object)*: The options object.
10593 4. `[options.chain=true]` *(boolean)*: Specify whether mixins are chainable.