Skip to content

makeDestructurable

Category
Export Size
201 B
Last Changed
10 months ago

使对象和数组具有等价的解构性能。详见这篇博文获取更多详情。

用法

TypeScript 示例:

ts
import { makeDestructurable } from '@vueuse/core'

const foo = { name: 'foo' }
const bar = 1024

const obj = makeDestructurable(
  { foo, bar } as const,
  [foo, bar] as const,
)
js
import { makeDestructurable } from '@vueuse/core'
const foo = { name: 'foo' }
const bar = 1024
const obj = makeDestructurable({ foo, bar }, [foo, bar])

用法:

ts
let { foo, bar } = obj
let [foo, bar] = obj

Type Declarations

typescript
export declare function makeDestructurable<
  T extends Record<string, unknown>,
  A extends readonly any[],
>(obj: T, arr: A): T & A

Source

SourceDocs

Contributors

Anthony Fu
丶远方
Breno A
enpitsulin

Changelog

842d7 - fix: fix Typescript < 5.0.0 support (#4028)
4ea13 - feat: support parameters without as const (#3971)

Released under the MIT License.