This commit is contained in:
2025-11-09 21:20:44 +08:00
parent 49ba397274
commit de5d95f1a9
20 changed files with 658 additions and 1 deletions

12
bun-server/index.ts Normal file
View File

@@ -0,0 +1,12 @@
import { pick } from 'es-toolkit'
const obj = {
a: {
b: {
c: 42
}
}
}
const c = pick(obj, ['a'])
console.log(c) // 42