1
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2025-08-12 00:34:51 +02:00
This commit is contained in:
CommanderRoot 2025-08-08 15:47:17 -04:00 committed by GitHub
commit 4393bd734c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 11 deletions

View file

@ -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))
}