mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 11:02:10 +00:00
31 lines
995 B
Markdown
31 lines
995 B
Markdown
[youtubei.js](../../../README.md) / [Utils](../README.md) / findFunction
|
|
|
|
# Function: findFunction()
|
|
|
|
> **findFunction**(`source`, `args`): [`FindFunctionResult`](../type-aliases/FindFunctionResult.md) \| `undefined`
|
|
|
|
Finds a function in a source string based on the provided search criteria.
|
|
|
|
## Parameters
|
|
|
|
• **source**: `string`
|
|
|
|
• **args**: [`FindFunctionArgs`](../type-aliases/FindFunctionArgs.md)
|
|
|
|
## Returns
|
|
|
|
[`FindFunctionResult`](../type-aliases/FindFunctionResult.md) \| `undefined`
|
|
|
|
## Example
|
|
|
|
```ts
|
|
const source = '(function() {var foo, bar; foo = function() { console.log("foo"); }; bar = function() { console.log("bar"); }; })();';
|
|
const result = findFunction(source, { name: 'bar' });
|
|
console.log(result);
|
|
// Output: { start: 69, end: 110, name: 'bar', node: { ... }, result: 'bar = function() { console.log("bar"); };' }
|
|
```
|
|
|
|
## Defined in
|
|
|
|
[src/utils/Utils.ts:289](https://github.com/LuanRT/YouTube.js/blob/4729016fb98e7045ee4043857be7eef780c01e35/src/utils/Utils.ts#L289)
|