mirror of
https://code.forgejo.org/actions/checkout.git
synced 2025-08-12 00:34:51 +02:00
Merge 55ad59dfaa
into 8edcb1bdb4
This commit is contained in:
commit
4393bd734c
4 changed files with 11 additions and 11 deletions
|
@ -282,6 +282,6 @@ function select(obj: any, path: string): any {
|
|||
return obj[path]
|
||||
}
|
||||
|
||||
const key = path.substr(0, i)
|
||||
return select(obj[key], path.substr(i + 1))
|
||||
const key = path.slice(0, i)
|
||||
return select(obj[key], path.slice(i + 1))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue