fix(camelCase)

This commit is contained in:
2025-04-18 21:53:37 +03:00
parent 8d22fe9309
commit c0fdb85a36
3 changed files with 15 additions and 15 deletions

View File

@ -78,7 +78,7 @@ export class List {
List.from = function (obj) {
const list = new List()
for (const value of obj) {
list.push_back(value)
list.pushBack(value)
}
return list
}